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

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DTypeIdsSection.java35 private final TreeMap<Type, TypeIdItem> typeIds; field in class:TypeIdsSection
45 typeIds = new TreeMap<Type, TypeIdItem>();
51 return typeIds.values();
64 IndexedItem result = typeIds.get(type);
81 int sz = typeIds.size();
110 TypeIdItem result = typeIds.get(type);
114 typeIds.put(type, result);
134 TypeIdItem result = typeIds.get(typePerSe);
138 typeIds.put(typePerSe, result);
158 TypeIdItem item = typeIds
[all...]
H A DDexFile.java68 private final TypeIdsSection typeIds; field in class:DexFile
115 typeIds = new TypeIdsSection(this);
127 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
334 return typeIds;
428 typeIds.intern((CstType) cst);
457 return typeIds.get(cst);
491 typeIds.prepare();
/dalvik/dx/src/com/android/dx/dex/file/
H A DTypeIdsSection.java35 private final TreeMap<Type, TypeIdItem> typeIds; field in class:TypeIdsSection
45 typeIds = new TreeMap<Type, TypeIdItem>();
51 return typeIds.values();
64 IndexedItem result = typeIds.get(type);
81 int sz = typeIds.size();
110 TypeIdItem result = typeIds.get(type);
114 typeIds.put(type, result);
134 TypeIdItem result = typeIds.get(typePerSe);
138 typeIds.put(typePerSe, result);
158 TypeIdItem item = typeIds
[all...]
H A DDexFile.java73 private final TypeIdsSection typeIds; field in class:DexFile
122 typeIds = new TypeIdsSection(this);
134 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
355 return typeIds;
447 typeIds.intern((CstType) cst);
476 return typeIds.get(cst);
510 typeIds.prepare();
/dalvik/dx/src/com/android/dx/dex/
H A DTableOfContents.java36 public final Section typeIds = new Section(0x0002); field in class:TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
103 typeIds.size = headerIn.readInt();
104 typeIds.off = headerIn.readInt();
180 out.writeInt(typeIds.size);
181 out.writeInt(typeIds.off);
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java43 public final short[] typeIds; field in class:IndexMap
56 this.typeIds = new short[tableOfContents.typeIds.size];
116 return (typeIndex == ClassDef.NO_INDEX) ? ClassDef.NO_INDEX : (typeIds[typeIndex] & 0xffff);
/dalvik/dx/src/com/android/dx/io/
H A DDexBuffer.java68 private final List<Integer> typeIds = new AbstractList<Integer>() { field in class:DexBuffer
70 checkBounds(index, tableOfContents.typeIds.size);
71 return open(tableOfContents.typeIds.off + (index * SizeOf.TYPE_ID_ITEM)).readInt();
74 return tableOfContents.typeIds.size;
80 checkBounds(index, tableOfContents.typeIds.size);
81 return strings.get(typeIds.get(index));
84 return tableOfContents.typeIds.size;
234 public List<Integer> typeIds() { method in class:DexBuffer
235 return typeIds;

Completed in 7991 milliseconds