Searched refs:stringIds (Results 1 - 2 of 2) sorted by relevance

/libcore/dex/src/main/java/com/android/dex/
H A DTableOfContents.java33 public final Section stringIds = new Section(0x0001); field in class:TableOfContents
51 header, stringIds, typeIds, protoIds, fieldIds, methodIds, classDefs, mapList,
100 stringIds.size = headerIn.readInt();
101 stringIds.off = headerIn.readInt();
177 out.writeInt(stringIds.size);
178 out.writeInt(stringIds.off);
H A DDex.java892 checkBounds(index, tableOfContents.stringIds.size);
893 return open(tableOfContents.stringIds.off + (index * SizeOf.STRING_ID_ITEM))
897 return tableOfContents.stringIds.size;

Completed in 31 milliseconds