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()
342 abstract TableOfContents.Section getSection(TableOfContents tableOfContents); in getSection() argument380 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeStringIds() argument381 return tableOfContents.stringIds; in mergeStringIds()402 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeIds() argument403 return tableOfContents.typeIds; in mergeTypeIds()426 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeLists() argument427 return tableOfContents.typeLists; in mergeTypeLists()446 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeProtoIds() argument447 return tableOfContents.protoIds; in mergeProtoIds()469 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeFieldIds() argument[all …]