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.cc6579 ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_); in LinkVirtualMethods() local
6580 if (!klass->CanAccessMember(super_method->GetDeclaringClass(), in LinkVirtualMethods()
6581 super_method->GetAccessFlags())) { in LinkVirtualMethods()
6588 super_method->GetInterfaceMethodIfProxy(image_pointer_size_)); in LinkVirtualMethods()
6598 if (super_method->IsFinal()) { in LinkVirtualMethods()
6601 super_method->GetDeclaringClassDescriptor()); in LinkVirtualMethods()
6606 } else if (super_method->IsOverridableByDefaultMethod()) { in LinkVirtualMethods()
6611 super_method, in LinkVirtualMethods()
6617 if (UNLIKELY(!super_method->IsDefaultConflicting())) { in LinkVirtualMethods()
6627 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.cc576 …void TestnonstaticCallNonvirtualMethod(bool super_object, bool super_class, bool super_method, con… in TestnonstaticCallNonvirtualMethod() argument
578 if (super_object && !super_method) { in TestnonstaticCallNonvirtualMethod()
581 if (super_class && !super_method) { in TestnonstaticCallNonvirtualMethod()
589 jmethodID m = (super_method) ? super_nonstatic_ : sub_nonstatic_; in TestnonstaticCallNonvirtualMethod()
593 CHECK_EQ(super_field, super_method); in TestnonstaticCallNonvirtualMethod()
594 CHECK_NE(sub_field, super_method); in TestnonstaticCallNonvirtualMethod()