Lines Matching refs:super_method
6348 ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_); in LinkVirtualMethods() local
6349 if (!klass->CanAccessMember(super_method->GetDeclaringClass(), in LinkVirtualMethods()
6350 super_method->GetAccessFlags())) { in LinkVirtualMethods()
6357 super_method->GetInterfaceMethodIfProxy(image_pointer_size_)); in LinkVirtualMethods()
6364 if (super_method->IsFinal()) { in LinkVirtualMethods()
6367 super_method->GetDeclaringClassDescriptor()); in LinkVirtualMethods()
6372 } else if (super_method->IsOverridableByDefaultMethod()) { in LinkVirtualMethods()
6377 super_method, in LinkVirtualMethods()
6383 if (UNLIKELY(!super_method->IsDefaultConflicting())) { in LinkVirtualMethods()
6393 if (UNLIKELY(!super_method->IsAbstract())) { in LinkVirtualMethods()
6400 if (UNLIKELY(super_method->IsDefaultConflicting() || in LinkVirtualMethods()
6401 default_method->GetDeclaringClass() != super_method->GetDeclaringClass())) { in LinkVirtualMethods()
6415 VLOG(class_linker) << "Method " << super_method->PrettyMethod() in LinkVirtualMethods()
6780 ArtMethod* super_method = super_imt->Get(i, image_pointer_size_); in FillIMTAndConflictTables() local
6781 if (method != super_method) { in FillIMTAndConflictTables()
6786 bool super_conflict_table = super_method->IsRuntimeMethod() && in FillIMTAndConflictTables()
6787 super_method != unimplemented_method && in FillIMTAndConflictTables()
6788 super_method != conflict_method; in FillIMTAndConflictTables()
6793 ImtConflictTable* table2 = super_method->GetImtConflictTable(image_pointer_size_); in FillIMTAndConflictTables()