Home
last modified time | relevance | path

Searched refs:protoIndex (Results 1 – 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dex/
DMethodId.java24 private final int protoIndex; field in MethodId
27 public MethodId(Dex dex, int declaringClassIndex, int protoIndex, int nameIndex) { in MethodId() argument
30 this.protoIndex = protoIndex; in MethodId()
39 return protoIndex; in getProtoIndex()
54 return Unsigned.compare(protoIndex, other.protoIndex); in compareTo()
59 out.writeUnsignedShort(protoIndex); in writeTo()
66 return declaringClassIndex + " " + protoIndex + " " + nameIndex; in toString()
70 + dex.readTypeList(dex.protoIds().get(protoIndex).getParametersOffset()); in toString()
DDex.java431 int protoIndex = readUnsignedShort(); in readMethodId() local
433 return new MethodId(Dex.this, declaringClassIndex, protoIndex, nameIndex); in readMethodId()
/dalvik/dx/src/com/android/dx/io/instructions/
DInvokePolymorphicRangeDecodedInstruction.java26 private final int protoIndex; field in InvokePolymorphicRangeDecodedInstruction
35 int protoIndex) { in InvokePolymorphicRangeDecodedInstruction() argument
37 if (protoIndex != (short) protoIndex) { in InvokePolymorphicRangeDecodedInstruction()
38 throw new IllegalArgumentException("protoIndex doesn't fit in a short: " + protoIndex); in InvokePolymorphicRangeDecodedInstruction()
42 this.protoIndex = protoIndex; in InvokePolymorphicRangeDecodedInstruction()
76 return (short) protoIndex; in getProtoIndex()
DInvokePolymorphicDecodedInstruction.java24 private final int protoIndex; field in InvokePolymorphicDecodedInstruction
32 int protoIndex, in InvokePolymorphicDecodedInstruction() argument
35 if (protoIndex != (short) protoIndex) { in InvokePolymorphicDecodedInstruction()
36 throw new IllegalArgumentException("protoIndex doesn't fit in a short: " + protoIndex); in InvokePolymorphicDecodedInstruction()
38 this.protoIndex = protoIndex; in InvokePolymorphicDecodedInstruction()
85 return (short) protoIndex; in getProtoIndex()
DInstructionCodec.java689 int protoIndex = in.read(); in FORMAT_45CC() local
699 this, opcode, methodIndex, indexType, protoIndex, registers); in FORMAT_45CC()
728 int protoIndex = in.read(); in FORMAT_4RCC() local
731 this, opcode, methodIndex, indexType, c, registerCount, protoIndex); in FORMAT_4RCC()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java164 public int adjustProto(int protoIndex) { in adjustProto() argument
165 return protoIds[protoIndex] & 0xffff; in adjustProto()