Home | History | Annotate | Download | only in runtime

Lines Matching refs:super_method

6348       ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_);
6349 if (!klass->CanAccessMember(super_method->GetDeclaringClass(),
6350 super_method->GetAccessFlags())) {
6352 // Before Android 4.1, the package-private method super_method might have been incorrectly
6357 super_method->GetInterfaceMethodIfProxy(image_pointer_size_));
6364 if (super_method->IsFinal()) {
6367 super_method->GetDeclaringClassDescriptor());
6372 } else if (super_method->IsOverridableByDefaultMethod()) {
6377 super_method,
6383 if (UNLIKELY(!super_method->IsDefaultConflicting())) {
6393 if (UNLIKELY(!super_method->IsAbstract())) {
6400 if (UNLIKELY(super_method->IsDefaultConflicting() ||
6401 default_method->GetDeclaringClass() != super_method->GetDeclaringClass())) {
6415 VLOG(class_linker) << "Method " << super_method->PrettyMethod()
6780 ArtMethod* super_method = super_imt->Get(i, image_pointer_size_);
6781 if (method != super_method) {
6786 bool super_conflict_table = super_method->IsRuntimeMethod() &&
6787 super_method != unimplemented_method &&
6788 super_method != conflict_method;
6793 ImtConflictTable* table2 = super_method->GetImtConflictTable(image_pointer_size_);