Home
last modified time | relevance | path

Searched refs:super_super (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dcha.cc436 ObjPtr<mirror::Class> super_super = klass->GetSuperClass()->GetSuperClass(); in CheckVirtualMethodSingleImplementationInfo() local
437 while (super_super != nullptr && in CheckVirtualMethodSingleImplementationInfo()
438 method_index < super_super->GetVTableLength()) { in CheckVirtualMethodSingleImplementationInfo()
439 ArtMethod* method_in_super_super = super_super->GetVTableEntry(method_index, pointer_size); in CheckVirtualMethodSingleImplementationInfo()
459 VerifyNonSingleImplementation(super_super->GetSuperClass(), in CheckVirtualMethodSingleImplementationInfo()
465 super_super = super_super->GetSuperClass(); in CheckVirtualMethodSingleImplementationInfo()
/art/test/004-JniTest/
Djni_test.cc525 jobject super_super = CallConstructor(super_, super_constructor_); in TestNewObject() local
530 CHECK(env_->IsInstanceOf(super_super, super_)); in TestNewObject()
531 CHECK(!env_->IsInstanceOf(super_super, sub_)); in TestNewObject()