Home
last modified time | relevance | path

Searched refs:protoIds (Results 1 – 13 of 13) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DProtoIdsSection.java35 private final TreeMap<Prototype, ProtoIdItem> protoIds; field in ProtoIdsSection
45 protoIds = new TreeMap<Prototype, ProtoIdItem>(); in ProtoIdsSection()
51 return protoIds.values(); in items()
67 IndexedItem result = protoIds.get(protoRef.getPrototype()); in get()
83 int sz = protoIds.size(); in writeHeaderPart()
112 ProtoIdItem result = protoIds.get(prototype); in intern()
116 protoIds.put(prototype, result); in intern()
136 ProtoIdItem item = protoIds.get(prototype); in indexOf()
DMethodIdItem.java45 ProtoIdsSection protoIds = file.getProtoIds(); in addContents() local
46 protoIds.intern(getMethodRef().getPrototype()); in addContents()
61 ProtoIdsSection protoIds = file.getProtoIds(); in getTypoidIdx() local
62 return protoIds.indexOf(getMethodRef().getPrototype()); in getTypoidIdx()
DDexFile.java79 private final ProtoIdsSection protoIds; field in DexFile
134 protoIds = new ProtoIdsSection(this); in DexFile()
155 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, in DexFile()
163 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, in DexFile()
423 return protoIds; in getProtoIds()
540 protoIds.intern(((CstProtoRef) cst).getPrototype()); in internIfAppropriate()
569 return protoIds.get(cst); in findItemOrNull()
633 protoIds.prepare(); in toDex0()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DProtoIdsSection.java35 private final TreeMap<Prototype, ProtoIdItem> protoIds; field in ProtoIdsSection
45 protoIds = new TreeMap<Prototype, ProtoIdItem>(); in ProtoIdsSection()
51 return protoIds.values(); in items()
68 int sz = protoIds.size(); in writeHeaderPart()
97 ProtoIdItem result = protoIds.get(prototype); in intern()
101 protoIds.put(prototype, result); in intern()
121 ProtoIdItem item = protoIds.get(prototype); in indexOf()
DMethodIdItem.java45 ProtoIdsSection protoIds = file.getProtoIds(); in addContents() local
46 protoIds.intern(getMethodRef().getPrototype()); in addContents()
61 ProtoIdsSection protoIds = file.getProtoIds(); in getTypoidIdx() local
62 return protoIds.indexOf(getMethodRef().getPrototype()); in getTypoidIdx()
DDexFile.java71 private final ProtoIdsSection protoIds; field in DexFile
116 protoIds = new ProtoIdsSection(this); in DexFile()
127 header, stringIds, typeIds, protoIds, fieldIds, methodIds, in DexFile()
347 return protoIds; in getProtoIds()
489 protoIds.prepare(); in toDex0()
/dalvik/dx/src/com/android/dex/
DTableOfContents.java35 public final Section protoIds = new Section(0x0003); field in TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
111 protoIds.size = headerIn.readInt(); in readHeader()
112 protoIds.off = headerIn.readInt(); in readHeader()
188 out.writeInt(protoIds.size); in writeHeader()
189 out.writeInt(protoIds.off); in writeHeader()
DCallSiteId.java53 return dex.protoIds().get(offset).toString(); in toString()
DMethodId.java70 + dex.readTypeList(dex.protoIds().get(protoIndex).getParametersOffset()); in toString()
DDex.java66 private final ProtoIdTable protoIds = new ProtoIdTable(); field in Dex
228 public List<ProtoId> protoIds() { in protoIds() method in Dex
229 return protoIds; in protoIds()
753 checkBounds(index, tableOfContents.protoIds.size); in get()
754 return open(tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * index)) in get()
759 return tableOfContents.protoIds.size; in size()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java65 public final short[] protoIds; field in IndexMap
81 this.protoIds = new short[tableOfContents.protoIds.size]; in IndexMap()
165 return protoIds[protoIndex] & 0xffff; in adjustProto()
DDexMerger.java460 return tableOfContents.protoIds; in mergeProtoIds()
471 indexMap.protoIds[oldIndex] = (short) newIndex; in mergeProtoIds()
1115 + contents.protoIds.size * SizeOf.PROTO_ID_ITEM in plus()
/dalvik/dx/src/com/android/dx/io/
DDexIndexPrinter.java69 for (ProtoId protoId : dex.protoIds()) { in printProtoIds()