Searched defs:methodIndex (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/oo/
H A DObject.c546 int methodIndex; local
573 methodIndex = clazz->iftable[i].methodIndexArray[meth->methodIndex];
575 methodIndex = meth->methodIndex;
578 assert(methodIndex >= 0 && methodIndex < clazz->vtableCount);
579 actualMeth = clazz->vtable[methodIndex];
H A DObject.h432 u2 methodIndex; member in struct:Method
/dalvik/vm/reflect/
H A DProxy.c76 gDvm.voffJavaLangObject_equals = methE->methodIndex;
77 gDvm.voffJavaLangObject_hashCode = methH->methodIndex;
78 gDvm.voffJavaLangObject_toString = methT->methodIndex;
79 gDvm.voffJavaLangObject_finalize = methF->methodIndex;
1067 int methodIndex = method - method->clazz->virtualMethods; local
1068 assert(methodIndex >= 0 && methodIndex < method->clazz->virtualMethodCount);
1071 methodThrows = (ArrayObject*) contents[methodIndex];
1075 //printf("+++ methodThrows[%d] is null, wrapping all\n", methodIndex);

Completed in 78 milliseconds