Searched defs:typeIds (Results 1 - 5 of 5) 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.java38 private final TreeMap<Type, TypeIdItem> typeIds; field in class:TypeIdsSection
48 typeIds = new TreeMap<Type, TypeIdItem>();
54 return typeIds.values();
67 IndexedItem result = typeIds.get(type);
84 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.java71 private final TypeIdsSection typeIds; field in class:DexFile
120 typeIds = new TypeIdsSection(this);
132 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
353 return typeIds;
445 typeIds.intern((CstType) cst);
474 return typeIds.get(cst);
508 typeIds.prepare();
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java60 public final short[] typeIds; field in class:IndexMap
74 this.typeIds = new short[tableOfContents.typeIds.size];
142 return (typeIndex == ClassDef.NO_INDEX) ? ClassDef.NO_INDEX : (typeIds[typeIndex] & 0xffff);

Completed in 1314 milliseconds