Lines Matching refs:baseMethod
108 Method* baseMethod; in GOTO_TARGET() local
140 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref); in GOTO_TARGET()
141 if (baseMethod == NULL) { in GOTO_TARGET()
142 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
143 if (baseMethod == NULL) { in GOTO_TARGET()
153 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount); in GOTO_TARGET()
154 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
181 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()
182 (u4) baseMethod->methodIndex, in GOTO_TARGET()
189 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()
190 (u4) baseMethod->methodIndex, in GOTO_TARGET()
204 Method* baseMethod; in GOTO_TARGET() local
234 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref); in GOTO_TARGET()
235 if (baseMethod == NULL) { in GOTO_TARGET()
236 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
237 if (baseMethod == NULL) { in GOTO_TARGET()
252 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) { in GOTO_TARGET()
257 dvmThrowNoSuchMethodError(baseMethod->name); in GOTO_TARGET()
260 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
272 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()