Lines Matching refs:baseMethod
1375 Method* baseMethod; in GOTO_TARGET() local
1407 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref); in GOTO_TARGET()
1408 if (baseMethod == NULL) { in GOTO_TARGET()
1409 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
1410 if (baseMethod == NULL) { in GOTO_TARGET()
1420 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount); in GOTO_TARGET()
1421 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
1448 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()
1449 (u4) baseMethod->methodIndex, in GOTO_TARGET()
1456 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()
1457 (u4) baseMethod->methodIndex, in GOTO_TARGET()
1471 Method* baseMethod; in GOTO_TARGET() local
1501 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref); in GOTO_TARGET()
1502 if (baseMethod == NULL) { in GOTO_TARGET()
1503 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL); in GOTO_TARGET()
1504 if (baseMethod == NULL) { in GOTO_TARGET()
1519 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) { in GOTO_TARGET()
1524 dvmThrowNoSuchMethodError(baseMethod->name); in GOTO_TARGET()
1527 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex]; in GOTO_TARGET()
1539 baseMethod->clazz->descriptor, baseMethod->name, in GOTO_TARGET()