Searched defs:protoIds (Results 1 - 7 of 7) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DProtoIdsSection.java35 private final TreeMap<Prototype, ProtoIdItem> protoIds; field in class:ProtoIdsSection
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
51 return protoIds.values();
68 int sz = protoIds.size();
97 ProtoIdItem result = protoIds.get(prototype);
101 protoIds.put(prototype, result);
121 ProtoIdItem item = protoIds.get(prototype);
H A DDexFile.java50 * circular dependency between the that and {@link #protoIds}.
71 private final ProtoIdsSection protoIds; field in class:DexFile
116 protoIds = new ProtoIdsSection(this);
127 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
347 return protoIds;
489 protoIds.prepare();
/dalvik/dx/src/com/android/dx/dex/file/
H A DProtoIdsSection.java35 private final TreeMap<Prototype, ProtoIdItem> protoIds; field in class:ProtoIdsSection
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
51 return protoIds.values();
68 int sz = protoIds.size();
97 ProtoIdItem result = protoIds.get(prototype);
101 protoIds.put(prototype, result);
121 ProtoIdItem item = protoIds.get(prototype);
H A DDexFile.java55 * circular dependency between the that and {@link #protoIds}.
76 private final ProtoIdsSection protoIds; field in class:DexFile
123 protoIds = new ProtoIdsSection(this);
134 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
368 return protoIds;
508 protoIds.prepare();
/dalvik/dx/src/com/android/dx/dex/
H A DTableOfContents.java37 public final Section protoIds = new Section(0x0003); field in class:TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
105 protoIds.size = headerIn.readInt();
106 protoIds.off = headerIn.readInt();
182 out.writeInt(protoIds.size);
183 out.writeInt(protoIds.off);
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java44 public final short[] protoIds; field in class:IndexMap
57 this.protoIds = new short[tableOfContents.protoIds.size];
131 return protoIds[protoIndex] & 0xffff;
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java88 private final List<ProtoId> protoIds = new AbstractList<ProtoId>() { field in class:DexBuffer
90 checkBounds(index, tableOfContents.protoIds.size);
91 return open(tableOfContents.protoIds.off + (SizeOf.PROTO_ID_ITEM * index))
95 return tableOfContents.protoIds.size;
242 public List<ProtoId> protoIds() { method in class:DexBuffer
243 return protoIds;

Completed in 2518 milliseconds