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