Lines Matching full:called_method
2132 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL,
2135 if (called_method == NULL) {
2141 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
2155 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT,
2159 if (called_method == NULL) {
2166 is_constructor = called_method->IsConstructor();
2167 return_type_descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
2172 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2173 * that to require that called_method->klass is the same as this->klass or this->super,
2222 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst,
2227 if (called_method == NULL) {
2233 descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();
2555 mirror::ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
2556 if (called_method != NULL) {
2557 const char* descriptor = MethodHelper(called_method).GetReturnTypeDescriptor();