Home | History | Annotate | Download | only in runtime

Lines Matching defs:super_class

689       ObjPtr<mirror::Class> super_class = referrer_class->GetSuperClass();
691 DCHECK(super_class != nullptr);
692 DCHECK(super_class->HasVTable());
693 // Note that super_class is a super of referrer_class and target_method
694 // will always be declared by super_class (or one of its super classes).
695 DCHECK_LT(vtable_index, super_class->GetVTableLength());
696 return super_class->GetVTableEntry(vtable_index, kRuntimePointerSize);