Home
last modified time | relevance | path

Searched refs:super_method (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dcha.cc144 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()
Dclass_linker.cc6626 ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_); in LinkVirtualMethods() local
6627 if (!klass->CanAccessMember(super_method->GetDeclaringClass(), in LinkVirtualMethods()
6628 super_method->GetAccessFlags())) { in LinkVirtualMethods()
6635 super_method->GetInterfaceMethodIfProxy(image_pointer_size_)); in LinkVirtualMethods()
6642 if (super_method->IsFinal()) { in LinkVirtualMethods()
6645 super_method->GetDeclaringClassDescriptor()); in LinkVirtualMethods()
6650 } else if (super_method->IsOverridableByDefaultMethod()) { in LinkVirtualMethods()
6655 super_method, in LinkVirtualMethods()
6661 if (UNLIKELY(!super_method->IsDefaultConflicting())) { in LinkVirtualMethods()
6671 if (UNLIKELY(!super_method->IsAbstract())) { in LinkVirtualMethods()
[all …]
/art/tools/veridex/
Dresolver.cc156 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/
Djni_test.cc547 …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()