HomeSort by relevance Sort by last modified time
    Searched refs:typeIds (Results 1 - 22 of 22) sorted by null

  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdItem.java 45 TypeIdsSection typeIds = file.getTypeIds();
46 typeIds.intern(getFieldRef().getType());
61 TypeIdsSection typeIds = file.getTypeIds();
62 return typeIds.indexOf(getFieldRef().getType());
IdItem.java 48 TypeIdsSection typeIds = file.getTypeIds();
49 typeIds.intern(type);
TypeIdsSection.java 35 private final TreeMap<Type, TypeIdItem> typeIds;
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.get(type)
    [all...]
TypeListItem.java 67 TypeIdsSection typeIds = file.getTypeIds();
71 typeIds.intern(list.getType(i));
93 TypeIdsSection typeIds = file.getTypeIds();
101 int idx = typeIds.indexOf(one);
110 out.writeShort(typeIds.indexOf(list.getType(i)));
MemberIdItem.java 64 TypeIdsSection typeIds = file.getTypeIds();
67 int classIdx = typeIds.indexOf(getDefiningClass());
DexFile.java 69 private final TypeIdsSection typeIds;
116 typeIds = new TypeIdsSection(this);
128 header, stringIds, typeIds, protoIds, fieldIds, methodIds,
335 return typeIds;
429 typeIds.intern((CstType) cst);
458 return typeIds.get(cst);
492 typeIds.prepare();
ClassDefItem.java 131 TypeIdsSection typeIds = file.getTypeIds();
137 typeIds.intern(thisClass);
151 typeIds.intern(superclass);
175 TypeIdsSection typeIds = file.getTypeIds();
176 int classIdx = typeIds.indexOf(thisClass);
178 typeIds.indexOf(superclass);
ProtoIdItem.java 116 TypeIdsSection typeIds = file.getTypeIds();
119 typeIds.intern(prototype.getReturnType());
ValueEncoder.java 312 TypeIdsSection typeIds = file.getTypeIds();
315 int typeIdx = typeIds.indexOf(type);
322 out.writeUnsignedLeb128(typeIds.indexOf(annotation.getType()));
495 TypeIdsSection typeIds = file.getTypeIds();
498 typeIds.intern(annotation.getType());
CatchStructs.java 122 TypeIdsSection typeIds = file.getTypeIds();
167 typeIds.indexOf(entry.getExceptionType()));
CodeItem.java 118 TypeIdsSection typeIds = file.getTypeIds();
127 typeIds.intern(type);
  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationAttributeImpl.java 30 private final int[] typeIds;
35 DexAnnotation annotation, int[] typeIds, String[] stringPool,
39 this.typeIds = typeIds;
47 value = new DexEncodedValueImpl(buffer, annotation, typeIds,
DexEncodedAnnotationImpl.java 33 private final int[] typeIds;
40 int[] typeIds, String[] stringPool, FieldIdItem[] fieldIdItems) {
43 this.typeIds = typeIds;
55 typeIds, stringPool, fieldIdItems));
68 return stringPool[typeIds[typeIdx]];
DexFileImpl.java 33 private final int[] typeIds;
42 public DexFileImpl(DexBuffer buffer, String[] stringPool, int[] typeIds,
47 this.typeIds = typeIds;
64 classDefItems[i], stringPool, typeIds, protoIdItems,
76 for (int i = 0; i < typeIds.length; i++) {
77 b.append(stringPool[typeIds[i]] + "\n");
DexAnnotationImpl.java 30 private int[] typeIds;
38 public DexAnnotationImpl(DexBuffer buffer, int offset, int[] typeIds,
42 this.typeIds = typeIds;
51 encodedAnnotation = new DexEncodedAnnotationImpl(buffer, this, typeIds,
DexParameterImpl.java 32 private final int[] typeIds;
37 Integer annotationOffset, int[] typeIds, String[] stringPool,
42 this.typeIds = typeIds;
55 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
DexFieldImpl.java 34 private int[] typeIds;
45 int[] typeIds, FieldIdItem[] fieldIdItems) {
52 this.typeIds = typeIds;
64 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
74 return stringPool[typeIds[fieldIdItem.type_idx]];
DexMethodImpl.java 42 private int[] typeIds;
58 int[] typeIds, FieldIdItem[] fieldIdItems) {
67 this.typeIds = typeIds;
91 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
101 return stringPool[typeIds[protoIdItem.return_type_idx]];
118 stringPool[typeIds[paramTypeIdx[i]]],
119 parameterIdToIndex.get(i), typeIds, stringPool,
DexEncodedValueImpl.java 35 private int[] typeIds;
48 int[] typeIds, String[] stringPool, FieldIdItem[] fieldIdItems) {
51 this.typeIds = typeIds;
136 return new DexEncodedAnnotationImpl(buffer, annotation, typeIds,
149 values.add(new DexEncodedValueImpl(buffer, annotation, typeIds,
165 String typeName = stringPool[typeIds[fieldIdItem.type_idx]];
190 String typeName = stringPool[typeIds[fieldIdItem.type_idx]];
202 return stringPool[typeIds[buffer.readInt(valueArg)]];
DexClassImpl.java 44 private final int[] typeIds;
70 String[] stringPool, int[] typeIds, ProtIdItem[] protoIdItems,
75 this.typeIds = typeIds;
243 buffer.readUInt(), typeIds, stringPool, fieldIdItems));
270 typeIds, fieldIdItems));
301 .get(methodIdIdx), stringPool, typeIds,
317 interfaces.add(stringPool[typeIds[buffer.readUShort()]]);
327 : stringPool[typeIds[classDefItem.superclass_idx]];
335 return stringPool[typeIds[classDefItem.class_idx]]
    [all...]
DexFileReader.java 61 private int[] typeIds; // values are index of stringPool
101 return new DexFileImpl(b.createCopy(), stringPool, typeIds,
171 typeIds = new int[nTypes];
173 for (int i = 0; i < typeIds.length; i++) {
174 typeIds[i] = b.readUInt();
222 public int class_idx; // defining class : index of typeIds
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 409 milliseconds