Searched refs:methodIndex (Results 1 – 8 of 8) sorted by relevance
/dalvik/dx/src/com/android/dex/ |
D | ClassData.java | 82 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()
|
D | Dex.java | 575 int methodIndex = 0; in readMethods() local 577 methodIndex += readUleb128(); // method index diff in readMethods() 580 result[i] = new ClassData.Method(methodIndex, accessFlags, codeOff); in readMethods()
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
D | InvokePolymorphicRangeDecodedInstruction.java | 31 int methodIndex, in InvokePolymorphicRangeDecodedInstruction() argument 36 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicRangeDecodedInstruction()
|
D | InvokePolymorphicDecodedInstruction.java | 30 int methodIndex, in InvokePolymorphicDecodedInstruction() argument 34 super(format, opcode, methodIndex, indexType, 0, 0); in InvokePolymorphicDecodedInstruction()
|
D | InstructionCodec.java | 623 int methodIndex = in.read(); in FORMAT_45CC() local 639 this, opcode, methodIndex, indexType, protoIndex, registers); in FORMAT_45CC() 664 int methodIndex = in.read(); in FORMAT_4RCC() local 669 this, opcode, methodIndex, indexType, c, registerCount, protoIndex); in FORMAT_4RCC()
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
D | FindUsages.java | 136 int methodIndex = method.getMethodIndex(); in findUsages() local 137 if (methodIds.contains(methodIndex)) { in findUsages() 138 … out.println(location() + " method declared " + dex.methodIds().get(methodIndex)); in findUsages() 175 int methodIndex = 0; in getMethodIds() local 179 methods.add(methodIndex); in getMethodIds() 181 methodIndex++; in getMethodIds()
|
/dalvik/dx/src/com/android/dx/merge/ |
D | IndexMap.java | 172 public int adjustMethod(int methodIndex) { in adjustMethod() argument 173 return methodIds[methodIndex] & 0xffff; in adjustMethod()
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
D | StdAttributeFactory.java | 820 for (int methodIndex = 0; methodIndex < numMethods; ++methodIndex) { in parseBootstrapMethods() 851 methods.set(methodIndex, declaringClass, (CstMethodHandle) cstMethodRef, arguments); in parseBootstrapMethods()
|