/aosp12/art/runtime/ |
H A D | cha.cc | 146 if (super_method->IsAbstract() && in ResetSingleImplementationInHierarchy() 317 if (verify_method->IsAbstract()) { in VerifyNonSingleImplementation() 372 if (method_in_super->IsAbstract()) { in CheckVirtualMethodSingleImplementationInfo() 379 if (virtual_method->IsAbstract()) { in CheckVirtualMethodSingleImplementationInfo() 421 if (virtual_method->IsAbstract()) { in CheckVirtualMethodSingleImplementationInfo() 441 if (method_in_super_super->IsAbstract()) { in CheckVirtualMethodSingleImplementationInfo() 484 if (implementation_method->IsAbstract()) { in CheckInterfaceMethodSingleImplementationInfo() 510 DCHECK(!single_impl->IsAbstract()); in CheckInterfaceMethodSingleImplementationInfo() 531 if (method->IsAbstract()) { in InitSingleImplementationFlag() 563 DCHECK(method.IsAbstract() || method.IsDefault()); in UpdateAfterLoadingOf() [all …]
|
H A D | art_method-inl.h | 416 DCHECK(!IsAbstract()); in SetCounter() 421 DCHECK(!IsAbstract()); in GetCounter() 426 if (LIKELY(IsAbstract())) { in GetImtIndex() 434 DCHECK(IsAbstract()) << PrettyMethod(); in CalculateAndSetImtIndex()
|
H A D | imtable-inl.h | 87 if (!method->IsAbstract()) { in GetImtIndex()
|
H A D | art_method.h | 230 DCHECK_EQ((GetAccessFlags() & kAccAbstract) == 0, !IsDefaultConflicting() && !IsAbstract()); in IsInvokable() 312 bool IsAbstract() const { in IsAbstract() function 560 DCHECK(IsAbstract()); in SetSingleImplementation() 604 return !IsRuntimeMethod() && !IsNative() && !IsProxyMethod() && !IsAbstract(); in HasCodeItem()
|
H A D | class_linker_test.cc | 290 EXPECT_TRUE(klass->IsAbstract()); in AssertClass() 312 if (klass->IsAbstract()) { in AssertClass() 318 EXPECT_FALSE(klass->IsAbstract()); in AssertClass() 323 EXPECT_TRUE(klass->IsAbstract()); in AssertClass() 1441 if (!method->IsNative() && !method->IsAbstract()) { in CheckMethod()
|
H A D | runtime_callbacks_test.cc | 82 if (!m.IsAbstract()) { in MakeExecutable()
|
H A D | art_method.cc | 158 DCHECK(IsAbstract()); in ThrowInvocationTimeError()
|
H A D | class_linker.cc | 3838 if (klass->IsInterface() && dst->IsAbstract()) { in LoadMethod() 6291 bool IsAbstract() const { in IsAbstract() function in art::ClassLinker::MethodTranslation 6479 if (!m->IsAbstract()) { in LinkVirtualMethods() 6530 DCHECK(super_class->IsAbstract() && !super_class->IsArrayClass()); in LinkVirtualMethods() 6627 if (UNLIKELY(!super_method->IsAbstract())) { in LinkVirtualMethods() 6810 if (current_method->IsAbstract() || in FindDefaultMethodImplementation() 7864 vtable_impl->IsAbstract() && in FindMethod() 7883 DCHECK(interface_method->IsAbstract()) << interface_method->PrettyMethod(); in GetOrCreateMirandaMethod() 8002 DCHECK(!new_method.IsAbstract()); in ReallocMethods() 8073 } else if (translation_it->second.IsAbstract()) { in UpdateVtable() [all …]
|
H A D | stack.cc | 765 if (method->IsAbstract()) { in GetCurrentQuickFrameInfo()
|
H A D | method_handles.cc | 696 if (target_method->IsAbstract()) { in RefineTargetMethod()
|
/aosp12/art/runtime/native/ |
H A D | java_lang_reflect_Constructor.cc | 69 if (UNLIKELY(c->IsAbstract())) { in Constructor_newInstance0()
|
H A D | dalvik_system_VMRuntime.cc | 481 if (!m.IsAbstract()) { in operator ()()
|
H A D | java_lang_Class.cc | 905 klass->IsAbstract())) { in Class_newInstance()
|
/aosp12/art/runtime/mirror/ |
H A D | class-inl.h | 1053 return !IsPrimitive() && !IsInterface() && !IsAbstract() && !IsArrayClass(); in IsInstantiableNonArray() 1060 !IsAbstract<kVerifyFlags>()) || in IsInstantiable() 1061 (IsAbstract<kVerifyFlags>() && IsArrayClass<kVerifyFlags>()); in IsInstantiable()
|
H A D | class.h | 310 ALWAYS_INLINE bool IsAbstract() REQUIRES_SHARED(Locks::mutator_lock_) { in IsAbstract() function
|
/aosp12/art/openjdkjvmti/ |
H A D | ti_method.cc | 182 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetArgumentsSize() 304 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetMaxLocals() 418 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetMethodLocation()
|
/aosp12/art/dex2oat/driver/ |
H A D | compiler_driver_test.cc | 84 if (!method->IsAbstract()) { in MakeExecutable()
|
/aosp12/art/compiler/optimizing/ |
H A D | sharpening.cc | 352 } else if (klass->IsAbstract()) { in ComputeTypeCheckKind()
|
/aosp12/art/runtime/interpreter/mterp/ |
H A D | nterp.cc | 383 if (!resolved_method->IsAbstract()) { in NterpGetMethod()
|
/aosp12/art/runtime/verifier/ |
H A D | reg_type_cache.cc | 210 DCHECK(!(klass->IsAbstract()) || klass->IsArrayClass()); in From()
|
/aosp12/art/runtime/interpreter/ |
H A D | interpreter.cc | 278 DCHECK(!shadow_frame.GetMethod()->IsAbstract()); in Execute()
|
H A D | unstarted_runtime.cc | 648 if (UNLIKELY(c->IsAbstract())) { in UnstartedConstructorNewInstance0()
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 2107 } else if (method->IsAbstract() || method->IsClassInitializer()) { in DumpMethod()
|
/aosp12/art/dex2oat/linker/ |
H A D | image_writer.cc | 3262 if (orig->IsAbstract()) { in CopyAndFixupMethod()
|