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

/libcore/dex/src/main/java/com/android/dex/
H A DDex.java61 private final TableOfContents tableOfContents = new TableOfContents(); field in class:Dex
81 this.tableOfContents.readFrom(this);
156 this.tableOfContents.readFrom(this);
183 return tableOfContents;
337 checkBounds(fieldIndex, tableOfContents.fieldIds.size);
338 int position = tableOfContents.fieldIds.off + (SizeOf.MEMBER_ID_ITEM * fieldIndex);
361 checkBounds(typeIndex, tableOfContents.typeIds.size);
362 if (!tableOfContents.classDefs.exists()) {
365 for (int i = 0; i < tableOfContents.classDefs.size; i++) {
378 checkBounds(fieldIndex, tableOfContents
[all...]

Completed in 27 milliseconds