Home
last modified time | relevance | path

Searched refs:fieldOrMethodId (Results 1 – 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dex/
DMethodHandle.java74 private final int fieldOrMethodId; field in MethodHandle
81 int fieldOrMethodId, in MethodHandle() argument
86 this.fieldOrMethodId = fieldOrMethodId; in MethodHandle()
95 return Unsigned.compare(fieldOrMethodId, o.fieldOrMethodId); in compareTo()
107 return fieldOrMethodId; in getFieldOrMethodId()
117 out.writeUnsignedShort(fieldOrMethodId); in writeTo()
124 return methodHandleType + " " + fieldOrMethodId; in toString()
129 ? dex.fieldIds().get(fieldOrMethodId) in toString()
130 : dex.methodIds().get(fieldOrMethodId)); in toString()
DDex.java451 int fieldOrMethodId = readUnsignedShort(); in readMethodHandle() local
453 return new MethodHandle(Dex.this, methodHandleType, unused1, fieldOrMethodId, unused2); in readMethodHandle()