Home
last modified time | relevance | path

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

/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/dx/src/com/android/dx/dex/file/
DProtoIdsSection.java35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>(); in ProtoIdsSection()
105 public synchronized ProtoIdItem intern(Prototype prototype) { in intern()
112 ProtoIdItem result = protoIds.get(prototype); in intern()
115 result = new ProtoIdItem(prototype); in intern()
136 ProtoIdItem item = protoIds.get(prototype); in indexOf()
151 ((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/tools/dexdeps/src/com/android/dexdeps/
DDexData.java32 private ProtoIdItem[] mProtoIds;
173 mProtoIds = new ProtoIdItem[count]; in loadProtoIds()
183 mProtoIds[i] = new ProtoIdItem(); in loadProtoIds()
196 ProtoIdItem protoId = mProtoIds[i]; in loadProtoIds()
319 ProtoIdItem protoId = mProtoIds[idx]; in argArrayFromProtoIndex()
334 ProtoIdItem protoId = mProtoIds[idx]; in returnTypeFromProtoIndex()
561 static class ProtoIdItem { class in DexData