Home
last modified time | relevance | path

Searched refs:IsSubClass (Results 1 – 7 of 7) sorted by relevance

/art/openjdkjvmti/
Dti_class_loader.cc156 if (!loader_class->IsSubClass(base_dex_loader_class.Get())) { in GetDexElementList()
/art/runtime/mirror/
Dclass-inl.h537 inline bool Class::IsSubClass(ObjPtr<Class> klass) { in IsSubClass() function
1079 return !src->IsInterface() && src->IsSubClass(this); in IsAssignableFrom()
1163 if (!this->IsInterface() && this->IsSubClass(access_to)) { in CanAccessMember()
Dclass.h619 bool IsSubClass(ObjPtr<Class> klass) REQUIRES_SHARED(Locks::mutator_lock_);
Dclass.cc527 return klass->IsSubClass(declaring_class); in IsValidInheritanceCheck()
/art/compiler/optimizing/
Dinstruction_builder.cc1170 static bool IsSubClass(ObjPtr<mirror::Class> to_test, ObjPtr<mirror::Class> super_class) in IsSubClass() function
1172 return to_test != nullptr && !to_test->IsInterface() && to_test->IsSubClass(super_class); in IsSubClass()
1187 if (IsSubClass(GetOutermostCompilingClass(), cls.Get())) { in IsInitialized()
1193 if (IsSubClass(GetCompilingClass(), cls.Get())) { in IsInitialized()
/art/runtime/
Dmethod_handles.cc250 if (LIKELY(boxed_from_class->IsSubClass(to))) { in ConvertJValueCommon()
/art/runtime/verifier/
Dmethod_verifier.cc4357 } else if (!this_type.GetClass()->IsSubClass(mirror::MethodHandle::StaticClass()) && in CheckSignaturePolymorphicReceiver()
4358 !this_type.GetClass()->IsSubClass(mirror::VarHandle::StaticClass())) { in CheckSignaturePolymorphicReceiver()