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 | 574 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/ |
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 | 683 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/ |
D | FindUsages.java | 138 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/ |
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()
|