Home
last modified time | relevance | path

Searched refs:sections (Results 1 – 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dex/
DTableOfContents.java52 public final Section[] sections = { field in TableOfContents
147 Arrays.sort(sections); in readMap()
152 for (int i = sections.length - 1; i >= 0; i--) { in computeSizesFromOffsets()
153 Section section = sections[i]; in computeSizesFromOffsets()
166 for (Section section : sections) { in getSection()
202 for (Section section : sections) { in writeMap()
209 for (Section section : sections) { in writeMap()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDexFile.java95 private final Section[] sections; field in DexFile
126 sections = new Section[] { in DexFile()
498 int count = sections.length; in toDex0()
502 Section one = sections[i]; in toDex0()
515 MapItem.addMap(sections, map); in toDex0()
546 Section one = sections[i]; in toDex0()
593 for (Section s : sections) { in getStatistics()
DMapItem.java67 public static void addMap(Section[] sections, in addMap() argument
69 if (sections == null) { in addMap()
80 for (Section section : sections) { in addMap()
/dalvik/dx/src/com/android/dx/dex/file/
DDexFile.java109 private final Section[] sections; field in DexFile
154 sections = new Section[] { in DexFile()
162 sections = new Section[] { in DexFile()
642 int count = sections.length; in toDex0()
646 Section one = sections[i]; in toDex0()
668 MapItem.addMap(sections, map); in toDex0()
700 final Section one = sections[i]; in toDex0()
750 for (Section s : sections) { in getStatistics()
DMapItem.java66 public static void addMap(Section[] sections, in addMap() argument
68 if (sections == null) { in addMap()
79 for (Section section : sections) { in addMap()
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java173 Arrays.sort(contentsOut.sections); in mergeDexes()
247 TableOfContents.Section[] sections = new TableOfContents.Section[dexes.length]; in mergeSorted() local
258 sections[i] = getSection(dexes[i].getTableOfContents()); in mergeSorted()
259 dexSections[i] = sections[i].exists() ? dexes[i].open(sections[i].off) : null; in mergeSorted()
262 dexSections[i], sections[i], indexMaps[i], indexes[i], values, i); in mergeSorted()
277 offsets[dex] = readIntoMap(dexSections[dex], sections[dex], in mergeSorted()
1119 mapList = SizeOf.UINT + (contents.sections.length * SizeOf.MAP_ITEM); in plus()
/dalvik/dx/src/com/android/dx/io/
DDexIndexPrinter.java41 for (TableOfContents.Section section : tableOfContents.sections) { in printMap()