Home
last modified time | relevance | path

Searched refs:methodIndex (Results 1 – 4 of 4) 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.java560 int methodIndex = 0; in readMethods() local
562 methodIndex += readUleb128(); // method index diff in readMethods()
565 result[i] = new ClassData.Method(methodIndex, accessFlags, codeOff); in readMethods()
/dalvik/dx/src/com/android/dx/command/findusages/
DFindUsages.java136 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/
DIndexMap.java164 public int adjustMethod(int methodIndex) { in adjustMethod() argument
165 return methodIds[methodIndex] & 0xffff; in adjustMethod()