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.java36 private final TreeMap<Type, TypeIdItem> typeIds; field in class:TypeIdsSection
46 typeIds = new TreeMap<Type, TypeIdItem>();
52 return typeIds.values();
65 IndexedItem result = typeIds.get(type);
82 int sz = typeIds.size();
115 TypeIdItem result = typeIds.get(type);
119 typeIds.put(type, result);
139 TypeIdItem result = typeIds.get(typePerSe);
143 typeIds.put(typePerSe, result);
163 TypeIdItem item = typeIds
[all...]
H A DDexFile.java76 private final TypeIdsSection typeIds; field in class:DexFile
133 typeIds = new TypeIdsSection(this);
155 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs,
163 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs,
410 return typeIds;
532 typeIds.intern((CstType) cst);
561 return typeIds.get(cst);
635 typeIds.prepare();
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java34 public final Section typeIds = new Section(0x0002); field in class:TableOfContents
53 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList, callSiteIds,
109 typeIds.size = headerIn.readInt();
110 typeIds.off = headerIn.readInt();
186 out.writeInt(typeIds.size);
187 out.writeInt(typeIds.off);
H A DDex.java64 private final TypeIndexToDescriptorIndexTable typeIds = new TypeIndexToDescriptorIndexTable(); field in class:Dex
220 public List<Integer> typeIds() { method in class:Dex
221 return typeIds;
319 * {@code open(tableOfContents.typeIds.off + (index * SizeOf.TYPE_ID_ITEM)).readInt();}
322 checkBounds(typeIndex, tableOfContents.typeIds.size);
323 int position = tableOfContents.typeIds.off + (SizeOf.TYPE_ID_ITEM * typeIndex);
734 return tableOfContents.typeIds.size;
746 return tableOfContents.typeIds.size;
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java64 public final short[] typeIds; field in class:IndexMap
80 this.typeIds = new short[tableOfContents.typeIds.size];
150 return (typeIndex == ClassDef.NO_INDEX) ? ClassDef.NO_INDEX : (typeIds[typeIndex] & 0xffff);

Completed in 160 milliseconds