Home
last modified time | relevance | path

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

/art/runtime/native/
Djava_lang_reflect_Constructor.cc44 if (UNLIKELY(c->IsAbstract())) { in Constructor_newInstance()
/art/runtime/mirror/
Dclass.h204 bool IsAbstract() const { in IsAbstract() function
366 … return (!IsPrimitive() && !IsInterface() && !IsAbstract()) || ((IsAbstract()) && IsArrayClass()); in IsInstantiable()
Dart_method.h115 bool IsAbstract() const { in IsAbstract() function
/art/runtime/
Dinstrumentation.cc59 if (!method->IsAbstract() && !method->IsProxyMethod()) { in InstallStubsForClass()
81 if (!method->IsAbstract() && !method->IsProxyMethod()) { in InstallStubsForClass()
Dclass_linker_test.cc202 EXPECT_TRUE(klass->IsAbstract()); in AssertClass()
226 if (klass->IsAbstract()) { in AssertClass()
232 EXPECT_FALSE(klass->IsAbstract()); in AssertClass()
237 EXPECT_TRUE(klass->IsAbstract()); in AssertClass()
Dcommon_test.h190 if (!method->IsAbstract()) { in MakeExecutable()
Dclass_linker.cc1589 CHECK(!method->IsAbstract()) << PrettyMethod(method); in GetOatCodeFor()
1693 if (method->IsAbstract()) { in LinkCode()
2880 CHECK(!method->IsAbstract()); in CheckProxyMethod()
3621 if (!vtable_method->IsAbstract() && !vtable_method->IsPublic()) { in LinkInterfaceMethods()
/art/runtime/entrypoints/portable/
Dportable_trampoline_entrypoints.cc188 if (method->IsAbstract()) { in artPortableToInterpreterBridge()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc276 if (method->IsAbstract()) { in artQuickToInterpreterBridge()
/art/runtime/verifier/
Dreg_type_cache.cc183 DCHECK(!(klass->IsAbstract()) || klass->IsArrayClass()); in From()
Dmethod_verifier.cc3950 if (reg_class->IsAbstract() && !reg_class->IsArrayClass()) { in GenerateDevirtMap()
3969 if (concrete_method == NULL || concrete_method->IsAbstract()) { in GenerateDevirtMap()
/art/compiler/
Dimage_writer.cc531 if (UNLIKELY(orig->IsAbstract())) { in FixupMethod()
/art/runtime/interpreter/
Dinterpreter.cc436 } else if (UNLIKELY(method->IsAbstract())) { in DoInvoke()
549 } else if (UNLIKELY(method->IsAbstract())) { in DoInvokeVirtualQuick()
3115 DCHECK(!shadow_frame.GetMethod()->IsAbstract()); in Execute()
3141 } else if (method->IsAbstract()) { in EnterInterpreterFromInvoke()
/art/compiler/driver/
Dcompiler_driver.cc853 *type_known_abstract = resolved_class->IsAbstract() && !resolved_class->IsArrayClass(); in CanAccessTypeWithoutChecks()
1194 CHECK(!called_method->IsAbstract()); in ComputeInvokeInfo()
/art/oatdump/
Doatdump.cc996 } else if (method->IsAbstract() || method->IsCalleeSaveMethod() || in Callback()