Searched refs:super_method (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | cha.cc | 144 ArtMethod* super_method = super_it-> in ResetSingleImplementationInHierarchy() local 146 if (super_method->IsAbstract() && in ResetSingleImplementationInHierarchy() 147 super_method->HasSingleImplementation<kWithoutReadBarrier>() && in ResetSingleImplementationInHierarchy() 148 super_method->GetSingleImplementation(pointer_size) == method) { in ResetSingleImplementationInHierarchy() 151 super_method->SetSingleImplementation(nullptr, pointer_size); in ResetSingleImplementationInHierarchy() 154 DCHECK(!super_method->HasSingleImplementation<kWithoutReadBarrier>()); in ResetSingleImplementationInHierarchy()
|
D | class_linker.cc | 6529 ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_); in LinkVirtualMethods() local 6530 if (!klass->CanAccessMember(super_method->GetDeclaringClass(), in LinkVirtualMethods() 6531 super_method->GetAccessFlags())) { in LinkVirtualMethods() 6538 super_method->GetInterfaceMethodIfProxy(image_pointer_size_)); in LinkVirtualMethods() 6545 if (super_method->IsFinal()) { in LinkVirtualMethods() 6548 super_method->GetDeclaringClassDescriptor()); in LinkVirtualMethods() 6553 } else if (super_method->IsOverridableByDefaultMethod()) { in LinkVirtualMethods() 6558 super_method, in LinkVirtualMethods() 6564 if (UNLIKELY(!super_method->IsDefaultConflicting())) { in LinkVirtualMethods() 6574 if (UNLIKELY(!super_method->IsAbstract())) { in LinkVirtualMethods() [all …]
|
/art/tools/veridex/ |
D | resolver.cc | 156 VeriMethod super_method = resolver->LookupMethodIn(*super, method_name, method_signature); in LookupMethodIn() local 157 if (super_method != nullptr) { in LookupMethodIn() 158 return super_method; in LookupMethodIn()
|
/art/test/004-JniTest/ |
D | jni_test.cc | 547 …void TestnonstaticCallNonvirtualMethod(bool super_object, bool super_class, bool super_method, con… in TestnonstaticCallNonvirtualMethod() argument 549 if (super_object && !super_method) { in TestnonstaticCallNonvirtualMethod() 552 if (super_class && !super_method) { in TestnonstaticCallNonvirtualMethod() 560 jmethodID m = (super_method) ? super_nonstatic_ : sub_nonstatic_; in TestnonstaticCallNonvirtualMethod() 564 CHECK_EQ(super_field, super_method); in TestnonstaticCallNonvirtualMethod() 565 CHECK_NE(sub_field, super_method); in TestnonstaticCallNonvirtualMethod()
|