Lines Matching refs:current_method

6751     for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) {  in ContainsOverridingMethodOf()
6753 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) { in ContainsOverridingMethodOf()
6808 ArtMethod* current_method = &method_iter; in FindDefaultMethodImplementation() local
6810 if (current_method->IsAbstract() || in FindDefaultMethodImplementation()
6812 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) { in FindDefaultMethodImplementation()
6814 } else if (!current_method->IsPublic()) { in FindDefaultMethodImplementation()
6818 LOG(WARNING) << "Interface method " << current_method->PrettyMethod() in FindDefaultMethodImplementation()
6836 << current_method->PrettyMethod() << " and " in FindDefaultMethodImplementation()
6856 *out_default_method = current_method; in FindDefaultMethodImplementation()
6861 VLOG(class_linker) << "A default method '" << current_method->PrettyMethod() in FindDefaultMethodImplementation()
6958 ArtMethod* current_method, in SetIMTRef() argument
6963 *imt_ref = current_method; in SetIMTRef()
6972 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) { in SetIMTRef()
6973 *imt_ref = current_method; in SetIMTRef()
7788 ArtMethod* current_method = nullptr; in FindMethod() local
7792 /*out*/&current_method)) { in FindMethod()
7795 DCHECK(current_method == nullptr); in FindMethod()
7825 current_method = default_conflict_method; in FindMethod()
7829 DCHECK(current_method != nullptr); in FindMethod()
7832 current_method->GetDeclaringClass() == vtable_impl->GetDeclaringClass()) { in FindMethod()
7835 current_method = vtable_impl; in FindMethod()
7849 default_methods_.push_back(current_method); in FindMethod()
7852 overriding_default_methods_.push_back(current_method); in FindMethod()
7855 CHECK(old == current_method) << "Multiple default implementations selected!"; in FindMethod()
7861 DCHECK(current_method == nullptr); in FindMethod()
7868 current_method = vtable_impl; in FindMethod()
7873 return current_method; in FindMethod()
8331 ArtMethod* current_method = helper.FindMethod(interface_method, in LinkInterfaceMethods() local
8335 if (current_method == nullptr && !super_interface) { in LinkInterfaceMethods()
8339 current_method = helper.GetOrCreateMirandaMethod(interface_method, in LinkInterfaceMethods()
8343 if (current_method != nullptr) { in LinkInterfaceMethods()
8345 method_array->SetElementPtrSize(j, current_method, image_pointer_size_); in LinkInterfaceMethods()
8348 current_method, in LinkInterfaceMethods()