Home | History | Annotate | Download | only in out

Lines Matching defs:baseMethod

1431         Method* baseMethod;
1463 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
1464 if (baseMethod == NULL) {
1465 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
1466 if (baseMethod == NULL) {
1476 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
1477 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
1504 baseMethod->clazz->descriptor, baseMethod->name,
1505 (u4) baseMethod->methodIndex,
1512 baseMethod->clazz->descriptor, baseMethod->name,
1513 (u4) baseMethod->methodIndex,
1515 //dvmDumpClass(baseMethod->clazz);
1527 Method* baseMethod;
1556 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
1557 if (baseMethod == NULL) {
1558 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
1559 if (baseMethod == NULL) {
1574 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
1580 baseMethod->name);
1583 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
1595 baseMethod->clazz->descriptor, baseMethod->name,