Lines Matching refs:baseMethod
3194 Method* baseMethod; in GOTO_TARGET() local
3226 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref); in GOTO_TARGET()
3227 if (baseMethod == NULL) { in GOTO_TARGET()
3228 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
3229 if (baseMethod == NULL) { in GOTO_TARGET()
3239 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount); in GOTO_TARGET()
3240 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
3267 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()
3268 (u4) baseMethod->methodIndex, in GOTO_TARGET()
3275 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()
3276 (u4) baseMethod->methodIndex, in GOTO_TARGET()
3290 Method* baseMethod; in GOTO_TARGET() local
3320 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref); in GOTO_TARGET()
3321 if (baseMethod == NULL) { in GOTO_TARGET()
3322 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
3323 if (baseMethod == NULL) { in GOTO_TARGET()
3338 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) { in GOTO_TARGET()
3343 dvmThrowNoSuchMethodError(baseMethod->name); in GOTO_TARGET()
3346 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
3358 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()