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.h552 inline bool Class::IsSubClass(ObjPtr<Class> klass) { in IsSubClass() function
1074 return !src->IsInterface() && src->IsSubClass(this); in IsAssignableFrom()
1159 if (!this->IsInterface() && this->IsSubClass(access_to)) { in CanAccessMember()
Dclass.h580 bool IsSubClass(ObjPtr<Class> klass) REQUIRES_SHARED(Locks::mutator_lock_);
Dclass.cc512 return klass->IsSubClass(declaring_class); in IsValidInheritanceCheck()
/art/compiler/optimizing/
Dinstruction_builder.cc1151 static bool IsSubClass(ObjPtr<mirror::Class> to_test, ObjPtr<mirror::Class> super_class) in IsSubClass() function
1153 return to_test != nullptr && !to_test->IsInterface() && to_test->IsSubClass(super_class); in IsSubClass()
1347 bool is_subclass = IsSubClass(outer_compilation_unit_->GetCompilingClass().Get(), cls.Get()); in IsInitialized()
1350 IsSubClass(dex_compilation_unit_->GetCompilingClass().Get(), cls.Get()); in IsInitialized()
/art/runtime/
Dmethod_handles.cc252 if (LIKELY(boxed_from_class->IsSubClass(to))) { in ConvertJValueCommon()
/art/runtime/verifier/
Dmethod_verifier.cc4365 if (!this_type.GetClass()->IsSubClass(GetClassRoot<mirror::MethodHandle>(class_roots)) && in CheckSignaturePolymorphicReceiver()
4366 !this_type.GetClass()->IsSubClass(GetClassRoot<mirror::VarHandle>(class_roots))) { in CheckSignaturePolymorphicReceiver()