Searched refs:tableOfContents (Results 1 – 4 of 4) 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()
61 private final TableOfContents tableOfContents = new TableOfContents(); field in Dex81 this.tableOfContents.readFrom(this); in Dex()141 this.tableOfContents.readFrom(this); in loadFrom()168 return tableOfContents; in getTableOfContents()322 checkBounds(typeIndex, tableOfContents.typeIds.size); in descriptorIndexFromTypeIndex()323 int position = tableOfContents.typeIds.off + (SizeOf.TYPE_ID_ITEM * typeIndex); in descriptorIndexFromTypeIndex()716 checkBounds(index, tableOfContents.stringIds.size); in get()717 return open(tableOfContents.stringIds.off + (index * SizeOf.STRING_ID_ITEM)) in get()722 return tableOfContents.stringIds.size; in size()734 return tableOfContents.typeIds.size; in size()[all …]
77 public IndexMap(Dex target, TableOfContents tableOfContents) { in IndexMap() argument79 this.stringIds = new int[tableOfContents.stringIds.size]; in IndexMap()80 this.typeIds = new short[tableOfContents.typeIds.size]; in IndexMap()81 this.protoIds = new short[tableOfContents.protoIds.size]; in IndexMap()82 this.fieldIds = new short[tableOfContents.fieldIds.size]; in IndexMap()83 this.methodIds = new short[tableOfContents.methodIds.size]; in IndexMap()84 this.callSiteIds = new int[tableOfContents.callSiteIds.size]; in IndexMap()
353 abstract TableOfContents.Section getSection(TableOfContents tableOfContents); in getSection() argument393 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeStringIds() argument394 return tableOfContents.stringIds; in mergeStringIds()415 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeIds() argument416 return tableOfContents.typeIds; in mergeTypeIds()439 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeTypeLists() argument440 return tableOfContents.typeLists; in mergeTypeLists()459 @Override TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeProtoIds() argument460 return tableOfContents.protoIds; in mergeProtoIds()484 TableOfContents.Section getSection(TableOfContents tableOfContents) { in mergeCallSiteIds() argument[all …]