Home | History | Annotate | Download | only in out

Lines Matching defs:baseMethod

3266         Method* baseMethod;
3298 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
3299 if (baseMethod == NULL) {
3300 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
3301 if (baseMethod == NULL) {
3311 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
3312 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
3339 baseMethod->clazz->descriptor, baseMethod->name,
3340 (u4) baseMethod->methodIndex,
3347 baseMethod->clazz->descriptor, baseMethod->name,
3348 (u4) baseMethod->methodIndex,
3350 //dvmDumpClass(baseMethod->clazz);
3362 Method* baseMethod;
3391 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
3392 if (baseMethod == NULL) {
3393 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
3394 if (baseMethod == NULL) {
3409 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
3415 baseMethod->name);
3418 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
3430 baseMethod->clazz->descriptor, baseMethod->name,