Home | History | Annotate | Download | only in c

Lines Matching full:basemethod

108         Method* baseMethod;
140 baseMethod = dvmDexGetResolvedMethod(methodClassDex, ref);
141 if (baseMethod == NULL) {
142 baseMethod = dvmResolveMethod(curMethod->clazz, ref,METHOD_VIRTUAL);
143 if (baseMethod == NULL) {
153 assert(baseMethod->methodIndex < thisPtr->clazz->vtableCount);
154 methodToCall = thisPtr->clazz->vtable[baseMethod->methodIndex];
181 baseMethod->clazz->descriptor, baseMethod->name,
182 (u4) baseMethod->methodIndex,
189 baseMethod->clazz->descriptor, baseMethod->name,
190 (u4) baseMethod->methodIndex,
192 //dvmDumpClass(baseMethod->clazz);
204 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) {
257 dvmThrowNoSuchMethodError(baseMethod->name);
260 methodToCall = curMethod->clazz->super->vtable[baseMethod->methodIndex];
272 baseMethod->clazz->descriptor, baseMethod->name,