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

/libcore/dex/src/main/java/com/android/dex/
H A DTableOfContents.java34 public final Section typeIds = new Section(0x0002); field in class:TableOfContents
51 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
101 typeIds.size = headerIn.readInt();
102 typeIds.off = headerIn.readInt();
178 out.writeInt(typeIds.size);
179 out.writeInt(typeIds.off);
H A DDex.java64 private final TypeIndexToDescriptorIndexTable typeIds = new TypeIndexToDescriptorIndexTable(); field in class:Dex
235 public List<Integer> typeIds() { method in class:Dex
236 return typeIds;
361 checkBounds(typeIndex, tableOfContents.typeIds.size);
454 * {@code open(tableOfContents.typeIds.off + (index * SizeOf.TYPE_ID_ITEM)).readInt();}
457 checkBounds(typeIndex, tableOfContents.typeIds.size);
458 int position = tableOfContents.typeIds.off + (SizeOf.TYPE_ID_ITEM * typeIndex);
907 return tableOfContents.typeIds.size;
917 return tableOfContents.typeIds.size;

Completed in 3342 milliseconds