Searched refs:protoIndex (Results 1 – 6 of 6) sorted by relevance
/dalvik/dx/src/com/android/dex/ |
D | MethodId.java | 24 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()
|
D | Dex.java | 431 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/ |
D | InvokePolymorphicRangeDecodedInstruction.java | 26 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()
|
D | InvokePolymorphicDecodedInstruction.java | 24 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()
|
D | InstructionCodec.java | 689 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/ |
D | IndexMap.java | 164 public int adjustProto(int protoIndex) { in adjustProto() argument 165 return protoIds[protoIndex] & 0xffff; in adjustProto()
|