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

/libcore/dex/src/main/java/com/android/dex/
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;
H A DDex.java386 * {@code methodIds().get(methodIndex).getDeclaringClassIndex();}
388 public int declaringClassIndexFromMethodIndex(int methodIndex) { argument
389 checkBounds(methodIndex, tableOfContents.methodIds.size);
390 int position = tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * methodIndex);
396 * {@code methodIds().get(methodIndex).getNameIndex();}
398 public int nameIndexFromMethodIndex(int methodIndex) { argument
399 checkBounds(methodIndex, tableOfContents.methodIds.size);
400 int position = tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * methodIndex);
410 public short[] parameterTypeIndicesFromMethodIndex(int methodIndex) { argument
411 checkBounds(methodIndex, tableOfContent
441 returnTypeIndexFromMethodIndex(int methodIndex) argument
[all...]

Completed in 109 milliseconds