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.java342 abstract TableOfContents.Section getSection(TableOfContents tableOfContents); in getSection() argument
380 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeStringIds() argument
381 return tableOfContents.stringIds; in mergeStringIds()
402 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeIds() argument
403 return tableOfContents.typeIds; in mergeTypeIds()
426 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeLists() argument
427 return tableOfContents.typeLists; in mergeTypeLists()
446 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeProtoIds() argument
447 return tableOfContents.protoIds; in mergeProtoIds()
469 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeFieldIds() argument
[all …]