Home
last modified time | relevance | path

Searched refs:tableOfContents (Results 1 – 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/io/
DDexIndexPrinter.java33 private final TableOfContents tableOfContents; field in DexIndexPrinter
37 this.tableOfContents = dex.getTableOfContents(); in DexIndexPrinter()
41 for (TableOfContents.Section section : tableOfContents.sections) { in printMap()
92 if (tableOfContents.typeLists.off == -1) { in printTypeLists()
96 Dex.Section in = dex.open(tableOfContents.typeLists.off); in printTypeLists()
97 for (int i = 0; i < tableOfContents.typeLists.size; i++) { in printTypeLists()
/dalvik/dx/src/com/android/dx/merge/
DIndexMap.java71 public IndexMap(Dex target, TableOfContents tableOfContents) { in IndexMap() argument
73 this.stringIds = new int[tableOfContents.stringIds.size]; in IndexMap()
74 this.typeIds = new short[tableOfContents.typeIds.size]; in IndexMap()
75 this.protoIds = new short[tableOfContents.protoIds.size]; in IndexMap()
76 this.fieldIds = new short[tableOfContents.fieldIds.size]; in IndexMap()
77 this.methodIds = new short[tableOfContents.methodIds.size]; in IndexMap()
DDexMerger.java334 abstract TableOfContents.Section getSection(TableOfContents tableOfContents); in getSection() argument
373 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeStringIds() argument
374 return tableOfContents.stringIds; in mergeStringIds()
395 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeIds() argument
396 return tableOfContents.typeIds; in mergeTypeIds()
419 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeLists() argument
420 return tableOfContents.typeLists; in mergeTypeLists()
439 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeProtoIds() argument
440 return tableOfContents.protoIds; in mergeProtoIds()
462 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeFieldIds() argument
[all …]