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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
MethodIdItem.java 60 int protoIndex = dexFile.readUshort(out.getCursor());
61 out.annotate(2, "proto_idx = %s", ProtoIdItem.getReferenceAnnotation(dexFile, protoIndex));
75 int protoIndex = dexFile.readUshort(methodOffset + PROTO_OFFSET);
76 String protoString = ProtoIdItem.asString(dexFile, protoIndex);
  /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...]
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationAccess.java 276 int protoIndex = dex.methodIds().get(methodDexIndex).getProtoIndex();
277 ProtoId proto = dex.protoIds().get(protoIndex);
  /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 235 milliseconds