Home
last modified time | relevance | path

Searched refs:typeIds (Results 1 – 11 of 11) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DTypeIdsSection.java35 private final TreeMap<Type, TypeIdItem> typeIds; field in TypeIdsSection
45 typeIds = new TreeMap<Type, TypeIdItem>(); in TypeIdsSection()
51 return typeIds.values(); in items()
64 IndexedItem result = typeIds.get(type); in get()
81 int sz = typeIds.size(); in writeHeaderPart()
110 TypeIdItem result = typeIds.get(type); in intern()
114 typeIds.put(type, result); in intern()
134 TypeIdItem result = typeIds.get(typePerSe); in intern()
138 typeIds.put(typePerSe, result); in intern()
158 TypeIdItem item = typeIds.get(type); in indexOf()
DFieldIdItem.java45 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
46 typeIds.intern(getFieldRef().getType()); in addContents()
61 TypeIdsSection typeIds = file.getTypeIds(); in getTypoidIdx() local
62 return typeIds.indexOf(getFieldRef().getType()); in getTypoidIdx()
DTypeListItem.java67 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
71 typeIds.intern(list.getType(i)); in addContents()
93 TypeIdsSection typeIds = file.getTypeIds(); in writeTo0() local
101 int idx = typeIds.indexOf(one); in writeTo0()
110 out.writeShort(typeIds.indexOf(list.getType(i))); in writeTo0()
DDexFile.java73 private final TypeIdsSection typeIds; field in DexFile
122 typeIds = new TypeIdsSection(this); in DexFile()
134 header, stringIds, typeIds, protoIds, fieldIds, methodIds, in DexFile()
355 return typeIds; in getTypeIds()
447 typeIds.intern((CstType) cst); in internIfAppropriate()
476 return typeIds.get(cst); in findItemOrNull()
510 typeIds.prepare(); in toDex0()
DClassDefItem.java129 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
135 typeIds.intern(thisClass); in addContents()
149 typeIds.intern(superclass); in addContents()
173 TypeIdsSection typeIds = file.getTypeIds(); in writeTo() local
174 int classIdx = typeIds.indexOf(thisClass); in writeTo()
176 typeIds.indexOf(superclass); in writeTo()
DIdItem.java48 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
49 typeIds.intern(type); in addContents()
DValueEncoder.java310 TypeIdsSection typeIds = file.getTypeIds(); in writeAnnotation() local
313 int typeIdx = typeIds.indexOf(type); in writeAnnotation()
320 out.writeUleb128(typeIds.indexOf(annotation.getType())); in writeAnnotation()
493 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
496 typeIds.intern(annotation.getType()); in addContents()
DMemberIdItem.java62 TypeIdsSection typeIds = file.getTypeIds(); in writeTo() local
65 int classIdx = typeIds.indexOf(getDefiningClass()); in writeTo()
DProtoIdItem.java113 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
116 typeIds.intern(prototype.getReturnType()); in addContents()
DCatchStructs.java120 TypeIdsSection typeIds = file.getTypeIds(); in encode() local
165 typeIds.indexOf(entry.getExceptionType())); in encode()
DCodeItem.java118 TypeIdsSection typeIds = file.getTypeIds(); in addContents() local
127 typeIds.intern(type); in addContents()