HomeSort by relevance Sort by last modified time
    Searched refs:super_method (Results 1 - 4 of 4) sorted by null

  /art/runtime/
cha.cc 144 ArtMethod* super_method = super_it-> local
146 if (super_method->IsAbstract() &&
147 super_method->HasSingleImplementation<kWithoutReadBarrier>() &&
148 super_method->GetSingleImplementation(pointer_size) == method) {
151 super_method->SetSingleImplementation(nullptr, pointer_size);
154 DCHECK(!super_method->HasSingleImplementation<kWithoutReadBarrier>());
class_linker.cc 6348 ArtMethod* super_method = vtable->GetElementPtrSize<ArtMethod*>(j, image_pointer_size_); local
6780 ArtMethod* super_method = super_imt->Get(i, image_pointer_size_); local
    [all...]
  /art/tools/veridex/
resolver.cc 156 VeriMethod super_method = resolver->LookupMethodIn(*super, method_name, method_signature); local
157 if (super_method != nullptr) {
158 return super_method;
  /art/test/004-JniTest/
jni_test.cc 547 void TestnonstaticCallNonvirtualMethod(bool super_object, bool super_class, bool super_method, const char* test_case) {
549 if (super_object && !super_method) {
552 if (super_class && !super_method) {
560 jmethodID m = (super_method) ? super_nonstatic_ : sub_nonstatic_;
564 CHECK_EQ(super_field, super_method);
565 CHECK_NE(sub_field, super_method);

Completed in 718 milliseconds