Home
last modified time | relevance | path

Searched refs:ProtoIdItem (Results 1 – 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DProtoIdsSection.java34 private final TreeMap<Prototype, ProtoIdItem> protoIds;
44 protoIds = new TreeMap<Prototype, ProtoIdItem>(); in ProtoIdsSection()
89 public ProtoIdItem intern(Prototype prototype) { in intern()
96 ProtoIdItem result = protoIds.get(prototype); in intern()
99 result = new ProtoIdItem(prototype); in intern()
120 ProtoIdItem item = protoIds.get(prototype); in indexOf()
135 ((ProtoIdItem) i).setIndex(idx); in orderItems()
DProtoIdItem.java30 public final class ProtoIdItem extends IndexedItem { class
48 public ProtoIdItem(Prototype prototype) { in ProtoIdItem() method in ProtoIdItem
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DProtoIdsSection.java35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>(); in ProtoIdsSection()
90 public ProtoIdItem intern(Prototype prototype) { in intern()
97 ProtoIdItem result = protoIds.get(prototype); in intern()
100 result = new ProtoIdItem(prototype); in intern()
121 ProtoIdItem item = protoIds.get(prototype); in indexOf()
136 ((ProtoIdItem) i).setIndex(idx); in orderItems()
DProtoIdItem.java30 public final class ProtoIdItem extends IndexedItem { class
51 public ProtoIdItem(Prototype prototype) { in ProtoIdItem() method in ProtoIdItem
/dalvik/tools/dexdeps/src/com/android/dexdeps/
DDexData.java31 private ProtoIdItem[] mProtoIds;
180 mProtoIds = new ProtoIdItem[count]; in loadProtoIds()
189 mProtoIds[i] = new ProtoIdItem(); in loadProtoIds()
202 ProtoIdItem protoId = mProtoIds[i]; in loadProtoIds()
331 ProtoIdItem protoId = mProtoIds[idx]; in argArrayFromProtoIndex()
346 ProtoIdItem protoId = mProtoIds[idx]; in returnTypeFromProtoIndex()
567 static class ProtoIdItem { class in DexData