Lines Matching refs:current_method

6792     for (ArtMethod& current_method : current_iface->GetDeclaredVirtualMethods(image_pointer_size)) {  in ContainsOverridingMethodOf()
6794 current_method.GetInterfaceMethodIfProxy(image_pointer_size)))) { in ContainsOverridingMethodOf()
6849 ArtMethod* current_method = &method_iter; in FindDefaultMethodImplementation() local
6851 if (current_method->IsAbstract() || in FindDefaultMethodImplementation()
6853 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) { in FindDefaultMethodImplementation()
6855 } else if (!current_method->IsPublic()) { in FindDefaultMethodImplementation()
6859 LOG(WARNING) << "Interface method " << current_method->PrettyMethod() in FindDefaultMethodImplementation()
6877 << current_method->PrettyMethod() << " and " in FindDefaultMethodImplementation()
6897 *out_default_method = current_method; in FindDefaultMethodImplementation()
6902 VLOG(class_linker) << "A default method '" << current_method->PrettyMethod() in FindDefaultMethodImplementation()
7001 ArtMethod* current_method, in SetIMTRef() argument
7006 *imt_ref = current_method; in SetIMTRef()
7015 current_method->GetInterfaceMethodIfProxy(image_pointer_size_))) { in SetIMTRef()
7016 *imt_ref = current_method; in SetIMTRef()
7822 ArtMethod* current_method = nullptr; in FindMethod() local
7826 /*out*/&current_method)) { in FindMethod()
7829 DCHECK(current_method == nullptr); in FindMethod()
7859 current_method = default_conflict_method; in FindMethod()
7863 DCHECK(current_method != nullptr); in FindMethod()
7866 current_method->GetDeclaringClass() == vtable_impl->GetDeclaringClass()) { in FindMethod()
7869 current_method = vtable_impl; in FindMethod()
7883 default_methods_.push_back(current_method); in FindMethod()
7886 overriding_default_methods_.push_back(current_method); in FindMethod()
7889 CHECK(old == current_method) << "Multiple default implementations selected!"; in FindMethod()
7895 DCHECK(current_method == nullptr); in FindMethod()
7902 current_method = vtable_impl; in FindMethod()
7907 return current_method; in FindMethod()
8360 ArtMethod* current_method = helper.FindMethod(interface_method, in LinkInterfaceMethods() local
8364 if (current_method == nullptr && !super_interface) { in LinkInterfaceMethods()
8368 current_method = helper.GetOrCreateMirandaMethod(interface_method, in LinkInterfaceMethods()
8372 if (current_method != nullptr) { in LinkInterfaceMethods()
8374 method_array->SetElementPtrSize(j, current_method, image_pointer_size_); in LinkInterfaceMethods()
8377 current_method, in LinkInterfaceMethods()