Home | History | Annotate | Download | only in out

Lines Matching defs:baseMethod

3516         Method* baseMethod;
3548 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
3549 if (baseMethod == NULL) {
3550 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
3551 if (baseMethod == NULL) {
3561 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
3562 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
3589 baseMethod->clazz->descriptor, baseMethod->name,
3590 (u4) baseMethod->methodIndex,
3597 baseMethod->clazz->descriptor, baseMethod->name,
3598 (u4) baseMethod->methodIndex,
3600 //dvmDumpClass(baseMethod->clazz);
3612 Method* baseMethod;
3641 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
3642 if (baseMethod == NULL) {
3643 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
3644 if (baseMethod == NULL) {
3659 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
3665 baseMethod->name);
3668 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
3680 baseMethod->clazz->descriptor, baseMethod->name,