Home
last modified time | relevance | path

Searched refs:IsAbstract (Results 1 – 22 of 22) sorted by relevance

/art/runtime/
Dcha.cc146 if (super_method->IsAbstract() && in ResetSingleImplementationInHierarchy()
317 if (verify_method->IsAbstract()) { in VerifyNonSingleImplementation()
335 DCHECK((virtual_method != method_in_super) || virtual_method->IsAbstract()); in CheckVirtualMethodSingleImplementationInfo()
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()
478 DCHECK(interface_method->IsAbstract() || interface_method->IsDefault()); in CheckInterfaceMethodSingleImplementationInfo()
484 if (implementation_method->IsAbstract()) { in CheckInterfaceMethodSingleImplementationInfo()
510 DCHECK(!single_impl->IsAbstract()); in CheckInterfaceMethodSingleImplementationInfo()
[all …]
Dart_method-inl.h417 DCHECK(!IsAbstract()) << PrettyMethod(); in SetCounter()
422 DCHECK(!IsAbstract()) << PrettyMethod(); in GetCounter()
427 if (LIKELY(IsAbstract() && imt_index_ != 0)) { in GetImtIndex()
437 DCHECK(IsAbstract()) << PrettyMethod(); in CalculateAndSetImtIndex()
Dart_method.h211 return !IsAbstract() && !IsDefaultConflicting(); in IsInvokable()
273 bool IsAbstract() { in IsAbstract() function
520 DCHECK(IsAbstract()); in SetSingleImplementation()
Dart_method.cc94 if (!IsAbstract()) { in GetSingleImplementation()
148 DCHECK(IsAbstract()); in ThrowInvocationTimeError()
Dclass_linker_test.cc289 EXPECT_TRUE(klass->IsAbstract()); in AssertClass()
311 if (klass->IsAbstract()) { in AssertClass()
317 EXPECT_FALSE(klass->IsAbstract()); in AssertClass()
322 EXPECT_TRUE(klass->IsAbstract()); in AssertClass()
1431 if (!method->IsNative() && !method->IsAbstract()) { in CheckMethod()
Druntime_callbacks_test.cc82 if (!m.IsAbstract()) { in MakeExecutable()
Dstack.cc703 if (method->IsAbstract()) { in GetCurrentQuickFrameInfo()
Dclass_linker.cc3789 if (klass->IsInterface() && dst->IsAbstract()) { in LoadMethod()
6261 if (!m->IsAbstract()) { in LinkVirtualMethods()
6299 DCHECK(super_class->IsAbstract() && !super_class->IsArrayClass()); in LinkVirtualMethods()
6393 if (UNLIKELY(!super_method->IsAbstract())) { in LinkVirtualMethods()
6572 if (current_method->IsAbstract() || in FindDefaultMethodImplementation()
7617 vtable_impl->IsAbstract() && in FindMethod()
7636 DCHECK(interface_method->IsAbstract()) << interface_method->PrettyMethod(); in GetOrCreateMirandaMethod()
7821 } else if (translation_it->second.IsAbstract()) { in UpdateVtable()
8004 if (!vtable_method->IsAbstract() && !vtable_method->IsPublic()) { in LinkInterfaceMethods()
Dclass_linker.h1090 bool IsAbstract() const { in IsAbstract() function
/art/runtime/native/
Djava_lang_reflect_Constructor.cc69 if (UNLIKELY(c->IsAbstract())) { in Constructor_newInstance0()
Djava_lang_Class.cc796 klass->IsAbstract())) { in Class_newInstance()
/art/compiler/optimizing/
Dsharpening.cc273 } else if (klass->IsAbstract()) { in ComputeTypeCheckKind()
/art/openjdkjvmti/
Dti_method.cc164 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetArgumentsSize()
285 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetMaxLocals()
398 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetMethodLocation()
/art/runtime/mirror/
Dclass-inl.h1026 return !IsPrimitive() && !IsInterface() && !IsAbstract() && !IsArrayClass(); in IsInstantiableNonArray()
1033 !IsAbstract<kVerifyFlags>()) || in IsInstantiable()
1034 (IsAbstract<kVerifyFlags>() && IsArrayClass<kVerifyFlags>()); in IsInstantiable()
Dclass.h269 ALWAYS_INLINE bool IsAbstract() REQUIRES_SHARED(Locks::mutator_lock_) { in IsAbstract() function
/art/dex2oat/driver/
Dcompiler_driver_test.cc84 if (!method->IsAbstract()) { in MakeExecutable()
/art/runtime/verifier/
Dreg_type_cache.cc205 DCHECK(!(klass->IsAbstract()) || klass->IsArrayClass()); in From()
/art/runtime/jit/
Dprofile_saver.cc378 if (!method.IsNative() && !method.IsAbstract()) { in SampleClassesAndExecutedMethods()
/art/runtime/interpreter/
Dinterpreter.cc254 DCHECK(!shadow_frame.GetMethod()->IsAbstract()); in Execute()
Dunstarted_runtime.cc694 if (UNLIKELY(c->IsAbstract())) { in UnstartedConstructorNewInstance0()
/art/oatdump/
Doatdump.cc2370 } else if (method->IsAbstract() || method->IsClassInitializer()) { in DumpMethod()
/art/dex2oat/linker/
Dimage_writer.cc3411 if (orig->IsAbstract()) { in CopyAndFixupMethod()