Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A 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()
H A Dclass_linker.cc6580 if (!klass->CanAccessMember(super_method->GetDeclaringClass(), in LinkVirtualMethods()
6581 super_method->GetAccessFlags())) { in LinkVirtualMethods()
6598 if (super_method->IsFinal()) { 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()
6634 if (UNLIKELY(super_method->IsDefaultConflicting() || in LinkVirtualMethods()
7016 if (method != super_method) { in FillIMTAndConflictTables()
7021 bool super_conflict_table = super_method->IsRuntimeMethod() && in FillIMTAndConflictTables()
[all …]
/aosp12/art/tools/veridex/
H A 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()
/aosp12/art/test/004-JniTest/
H A 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()