Searched refs:tableOfContents (Results 1 – 3 of 3) sorted by relevance
33 private final TableOfContents tableOfContents; field in DexIndexPrinter37 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()
71 public IndexMap(Dex target, TableOfContents tableOfContents) { in IndexMap() argument73 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()
334 abstract TableOfContents.Section getSection(TableOfContents tableOfContents); in getSection() argument373 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeStringIds() argument374 return tableOfContents.stringIds; in mergeStringIds()395 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeIds() argument396 return tableOfContents.typeIds; in mergeTypeIds()419 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeLists() argument420 return tableOfContents.typeLists; in mergeTypeLists()439 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeProtoIds() argument440 return tableOfContents.protoIds; in mergeProtoIds()462 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeFieldIds() argument[all …]