Home
last modified time | relevance | path

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

/art/runtime/
Dcha.cc421 ObjPtr<mirror::Class> super_super = klass->GetSuperClass()->GetSuperClass(); in CheckVirtualMethodSingleImplementationInfo() local
422 while (super_super != nullptr && in CheckVirtualMethodSingleImplementationInfo()
423 method_index < super_super->GetVTableLength()) { in CheckVirtualMethodSingleImplementationInfo()
424 ArtMethod* method_in_super_super = super_super->GetVTableEntry(method_index, pointer_size); in CheckVirtualMethodSingleImplementationInfo()
444 VerifyNonSingleImplementation(super_super->GetSuperClass(), in CheckVirtualMethodSingleImplementationInfo()
450 super_super = super_super->GetSuperClass(); in CheckVirtualMethodSingleImplementationInfo()
/art/test/004-JniTest/
Djni_test.cc554 jobject super_super = CallConstructor(super_, super_constructor_); in TestNewObject() local
559 CHECK(env_->IsInstanceOf(super_super, super_)); in TestNewObject()
560 CHECK(!env_->IsInstanceOf(super_super, sub_)); in TestNewObject()