Home
last modified time | relevance | path

Searched refs:methodIndex (Results 1 – 8 of 8) sorted by relevance

/dalvik/dx/src/com/android/dex/
DClassData.java82 private final int methodIndex; field in ClassData.Method
86 public Method(int methodIndex, int accessFlags, int codeOffset) { in Method() argument
87 this.methodIndex = methodIndex; in Method()
93 return methodIndex; in getMethodIndex()
DDex.java574 int methodIndex = 0; in readMethods() local
576 methodIndex += readUleb128(); // method index diff in readMethods()
579 result[i] = new ClassData.Method(methodIndex, accessFlags, codeOff); in readMethods()
/dalvik/dx/src/com/android/dx/io/instructions/
DInvokePolymorphicRangeDecodedInstruction.java31 int methodIndex, in InvokePolymorphicRangeDecodedInstruction() argument
36 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicRangeDecodedInstruction()
DInvokePolymorphicDecodedInstruction.java30 int methodIndex, in InvokePolymorphicDecodedInstruction() argument
34 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicDecodedInstruction()
DInstructionCodec.java683 int methodIndex = in.read(); in FORMAT_45CC() local
699 this, opcode, methodIndex, indexType, protoIndex, registers); in FORMAT_45CC()
726 int methodIndex = in.read(); in FORMAT_4RCC() local
731 this, opcode, methodIndex, indexType, c, registerCount, protoIndex); in FORMAT_4RCC()
/dalvik/dx/src/com/android/dx/command/findusages/
DFindUsages.java138 int methodIndex = method.getMethodIndex(); in findUsages() local
139 if (methodIds.contains(methodIndex)) { in findUsages()
140 … out.println(location() + " method declared " + dex.methodIds().get(methodIndex)); in findUsages()
177 int methodIndex = 0; in getMethodIds() local
181 methods.add(methodIndex); in getMethodIds()
183 methodIndex++; in getMethodIds()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java172 public int adjustMethod(int methodIndex) { in adjustMethod() argument
173 return methodIds[methodIndex] & 0xffff; in adjustMethod()
/dalvik/dx/src/com/android/dx/cf/direct/
DStdAttributeFactory.java820 for (int methodIndex = 0; methodIndex < numMethods; ++methodIndex) { in parseBootstrapMethods()
851 methods.set(methodIndex, declaringClass, (CstMethodHandle) cstMethodRef, arguments); in parseBootstrapMethods()