HomeSort by relevance Sort by last modified time
    Searched refs:protoIndex (Results 1 - 9 of 9) sorted by null

  /libcore/dex/src/main/java/com/android/dex/
MethodId.java 24 private final int protoIndex;
27 public MethodId(Dex dex, int declaringClassIndex, int protoIndex, int nameIndex) {
30 this.protoIndex = protoIndex;
39 return protoIndex;
53 return Unsigned.compare(protoIndex, other.protoIndex);
58 out.writeUnsignedShort(protoIndex);
64 return declaringClassIndex + " " + protoIndex + " " + nameIndex;
68 + dex.readTypeList(dex.protoIds().get(protoIndex).getParametersOffset())
    [all...]
Dex.java 402 position += SizeOf.USHORT; // protoIndex
414 int protoIndex = data.getShort(position) & 0xFFFF;
415 checkBounds(protoIndex, tableOfContents.protoIds.size);
416 position = tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * protoIndex);
445 int protoIndex = data.getShort(position) & 0xFFFF;
446 checkBounds(protoIndex, tableOfContents.protoIds.size);
447 position = tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * protoIndex);
615 int protoIndex = readUnsignedShort();
617 return new MethodId(Dex.this, declaringClassIndex, protoIndex, nameIndex);
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 156 public int adjustProto(int protoIndex) {
157 return protoIds[protoIndex] & 0xffff;
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 277 public static int getMethodIndex(Class<?> declaringClass, String name, int protoIndex) {
281 MethodId methodId = new MethodId(dex, declaringClassIndex, protoIndex, nameIndex);
291 int protoIndex = dex.methodIds().get(methodDexIndex).getProtoIndex();
292 ProtoId proto = dex.protoIds().get(protoIndex);
  /prebuilts/runtime/common/dex/
dex-host-prebuilt.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 1401 milliseconds