Lines Matching full:this_object
30 mirror::Object* this_object,
36 method = this_object->GetClass()->FindVirtualMethodForInterface(interface_method);
39 ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(interface_method, this_object,
121 method = FindMethodFromCode(dex_method_idx, this_object, caller_method, self,
146 static uint64_t artInvokeCommon(uint32_t method_idx, mirror::Object* this_object,
151 mirror::ArtMethod* method = FindMethodFast(method_idx, this_object, caller_method,
155 method = FindMethodFromCode(method_idx, this_object, caller_method, self, access_check, type);
181 mirror::Object* this_object,
186 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kInterface);
191 mirror::Object* this_object,
196 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kDirect);
200 mirror::Object* this_object,
205 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kStatic);
209 mirror::Object* this_object,
214 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kSuper);
218 mirror::Object* this_object,
223 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kVirtual);