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

/dalvik/dx/src/com/android/dx/io/
H A DDexIndexPrinter.java28 private final TableOfContents tableOfContents; field in class:DexIndexPrinter
32 this.tableOfContents = dexBuffer.getTableOfContents();
36 for (TableOfContents.Section section : tableOfContents.sections) {
87 if (tableOfContents.typeLists.off == -1) {
91 DexBuffer.Section in = dexBuffer.open(tableOfContents.typeLists.off);
92 for (int i = 0; i < tableOfContents.typeLists.size; i++) {
H A DDexBuffer.java54 private final TableOfContents tableOfContents = new TableOfContents(); field in class:DexBuffer
59 checkBounds(index, tableOfContents.stringIds.size);
60 return open(tableOfContents.stringIds.off + (index * SizeOf.STRING_ID_ITEM))
64 return tableOfContents.stringIds.size;
70 checkBounds(index, tableOfContents.typeIds.size);
71 return open(tableOfContents.typeIds.off + (index * SizeOf.TYPE_ID_ITEM)).readInt();
74 return tableOfContents.typeIds.size;
80 checkBounds(index, tableOfContents.typeIds.size);
84 return tableOfContents.typeIds.size;
90 checkBounds(index, tableOfContents
[all...]
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java53 public IndexMap(DexBuffer target, TableOfContents tableOfContents) { argument
55 this.stringIds = new int[tableOfContents.stringIds.size];
56 this.typeIds = new short[tableOfContents.typeIds.size];
57 this.protoIds = new short[tableOfContents.protoIds.size];
58 this.fieldIds = new short[tableOfContents.fieldIds.size];
59 this.methodIds = new short[tableOfContents.methodIds.size];
H A DDexMerger.java339 abstract TableOfContents.Section getSection(TableOfContents tableOfContents); argument
377 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) {
378 return tableOfContents.stringIds;
399 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) {
400 return tableOfContents.typeIds;
423 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) {
424 return tableOfContents.typeLists;
443 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) {
444 return tableOfContents.protoIds;
466 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) {
[all...]

Completed in 219 milliseconds