Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_class_loader.cc156 if (!loader_class->IsSubClass(base_dex_loader_class.Get())) { in GetDexElementList()
Dti_redefine.cc2186 if (sub_data.GetRedefinition().GetMirrorClass()->IsSubClass( in MarkStructuralChanges()
/art/runtime/mirror/
Dclass-inl.h574 inline bool Class::IsSubClass(ObjPtr<Class> klass) { in IsSubClass() function
1101 return !src->IsInterface() && src->IsSubClass(this); in IsAssignableFrom()
1186 if (!this->IsInterface() && this->IsSubClass(access_to)) { in CanAccessMember()
Dclass.h644 bool IsSubClass(ObjPtr<Class> klass) REQUIRES_SHARED(Locks::mutator_lock_);
Dclass.cc633 return klass->IsSubClass(declaring_class); in IsValidInheritanceCheck()
/art/compiler/optimizing/
Dinstruction_builder.cc1230 static bool IsSubClass(ObjPtr<mirror::Class> to_test, ObjPtr<mirror::Class> super_class) in IsSubClass() function
1232 return to_test != nullptr && !to_test->IsInterface() && to_test->IsSubClass(super_class); in IsSubClass()
1431 bool is_subclass = IsSubClass(outer_compilation_unit_->GetCompilingClass().Get(), cls); in IsInitialized()
1434 IsSubClass(dex_compilation_unit_->GetCompilingClass().Get(), cls); in IsInitialized()
/art/runtime/
Dmethod_handles.cc253 if (LIKELY(boxed_from_class->IsSubClass(to))) { in ConvertJValueCommon()
/art/runtime/verifier/
Dmethod_verifier.cc4405 if (!this_type.GetClass()->IsSubClass(GetClassRoot<mirror::MethodHandle>(class_roots)) && in CheckSignaturePolymorphicReceiver()
4406 !this_type.GetClass()->IsSubClass(GetClassRoot<mirror::VarHandle>(class_roots))) { in CheckSignaturePolymorphicReceiver()
/art/dex2oat/driver/
Dcompiler_driver.cc1664 hklass->IsSubClass(class_linker->FindClass(self, in Visit()