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

/dalvik/dx/src/com/android/dx/io/
H A DClassData.java82 private final int methodIndex; field in class:ClassData.Method
86 public Method(int methodIndex, int accessFlags, int codeOffset) { argument
87 this.methodIndex = methodIndex;
93 return methodIndex;
/dalvik/vm/oo/
H A DObject.cpp676 int methodIndex; local
704 methodIndex = clazz->iftable[i].methodIndexArray[meth->methodIndex];
706 methodIndex = meth->methodIndex;
709 assert(methodIndex >= 0 && methodIndex < clazz->vtableCount);
710 actualMeth = clazz->vtable[methodIndex];
H A DObject.h502 u2 methodIndex; member in struct:Method
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java138 public int adjustMethod(int methodIndex) { argument
139 return methodIds[methodIndex] & 0xffff;
/dalvik/vm/compiler/codegen/x86/
H A DLowerInvoke.cpp100 int methodIndex = local
101 currentMethod->clazz->pDvmDex->pResMethods[tmp]->methodIndex;
102 move_mem_to_reg(OpndSize_32, methodIndex*4, 7, false, PhysicalReg_ECX, true);
110 int methodIndex = local
111 currentMethod->clazz->pDvmDex->pResMethods[tmp]->methodIndex;
112 gen_predicted_chain(isRange, tmp, methodIndex*4, false, 5/*tmp5*/);
149 int mIndex = currentMethod->clazz->pDvmDex->pResMethods[tmp]->methodIndex;
/dalvik/vm/reflect/
H A DProxy.cpp1006 int methodIndex = method - method->clazz->virtualMethods; local
1007 assert(methodIndex >= 0 && methodIndex < method->clazz->virtualMethodCount);
1010 const ArrayObject* methodThrows = (ArrayObject*) contents[methodIndex];
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.cpp1185 int methodIndex,
1253 loadWordDisp(cUnit, r7, methodIndex * 4, r0);
3006 * method->clazz->pDvmDex->pResMethods[BBBB]->methodIndex
3012 int methodIndex = local
3014 methodIndex;
3030 genInvokeVirtualCommon(cUnit, mir, methodIndex,
3038 * ->pResMethods[BBBB]->methodIndex]
3046 pResMethods[dInsn->vB]->methodIndex]);
3365 int methodIndex = dInsn->vB; local
3392 genInvokeVirtualCommon(cUnit, mir, methodIndex,
1184 genInvokeVirtualCommon(CompilationUnit *cUnit, MIR *mir, int methodIndex, ArmLIR *retChainingCell, ArmLIR *predChainingCell, ArmLIR *pcrLabel) argument
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DCodegenDriver.cpp1234 int methodIndex,
1306 loadWordDisp(cUnit, r_S4, methodIndex * 4, r_A0);
3092 * method->clazz->pDvmDex->pResMethods[BBBB]->methodIndex
3098 int methodIndex = local
3100 methodIndex;
3116 genInvokeVirtualCommon(cUnit, mir, methodIndex,
3124 * ->pResMethods[BBBB]->methodIndex]
3132 pResMethods[dInsn->vB]->methodIndex]);
3491 int methodIndex = dInsn->vB; local
3517 genInvokeVirtualCommon(cUnit, mir, methodIndex,
1233 genInvokeVirtualCommon(CompilationUnit *cUnit, MIR *mir, int methodIndex, MipsLIR *retChainingCell, MipsLIR *predChainingCell, MipsLIR *pcrLabel) argument
[all...]

Completed in 699 milliseconds