Lines Matching defs:baseMethod
109 Method* baseMethod;
141 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
142 if (baseMethod == NULL) {
143 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
144 if (baseMethod == NULL) {
154 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
155 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
182 baseMethod->clazz->descriptor, baseMethod->name,
183 (u4) baseMethod->methodIndex,
190 baseMethod->clazz->descriptor, baseMethod->name,
191 (u4) baseMethod->methodIndex,
193 //dvmDumpClass(baseMethod->clazz);
205 Method* baseMethod;
234 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
235 if (baseMethod == NULL) {
236 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
237 if (baseMethod == NULL) {
252 if (baseMethod->methodIndex >= curMethod->clazz->super->vtableCount) {
258 baseMethod->name);
261 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
273 baseMethod->clazz->descriptor, baseMethod->name,