Searched refs:sections (Results 1 - 8 of 8) sorted by relevance

/dalvik/tools/
H A Ddeadcode.py18 sections = {}
30 sections[sectionName] = buffer[anchor]
31 return sections
33 # Add the lines from the last header, to this one to the sections
36 sections[sectionName] = buffer[anchor:result.start()]
42 return sections
107 sections = SplitSections(data)
112 methods = FindMethods(sections['method code index'])
113 codes = sections['codes']
114 del(sections)
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDexFile.java92 * {@code non-null;} array of sections in the order they will appear in the
95 private final Section[] sections; field in class:DexFile
123 * This is the list of sections in the order they appear in
126 sections = new Section[] {
479 * add items happen before the calls to the sections that get
496 // Place the sections within the file.
498 int count = sections.length;
502 Section one = sections[i];
511 * Inform the map of all the sections, and add it
515 MapItem.addMap(sections, ma
[all...]
H A DMapItem.java60 * the contents of the given array of sections, adding it to the
63 * @param sections {@code non-null;} the sections
67 public static void addMap(Section[] sections, argument
69 if (sections == null) {
70 throw new NullPointerException("sections == null");
80 for (Section section : sections) {
/dalvik/dx/src/com/android/dx/dex/
H A DTableOfContents.java52 public final Section[] sections = { field in class:TableOfContents
141 Arrays.sort(sections);
146 for (int i = sections.length - 1; i >= 0; i--) {
147 Section section = sections[i];
160 for (Section section : sections) {
196 for (Section section : sections) {
203 for (Section section : sections) {
/dalvik/dx/src/com/android/dx/dex/file/
H A DDexFile.java97 * {@code non-null;} array of sections in the order they will appear in the
100 private final Section[] sections; field in class:DexFile
130 * This is the list of sections in the order they appear in
133 sections = new Section[] {
498 * add items happen before the calls to the sections that get
515 // Place the sections within the file.
517 int count = sections.length;
521 Section one = sections[i];
530 * Inform the map of all the sections, and add it
534 MapItem.addMap(sections, ma
[all...]
H A DMapItem.java60 * the contents of the given array of sections, adding it to the
63 * @param sections {@code non-null;} the sections
67 public static void addMap(Section[] sections, argument
69 if (sections == null) {
70 throw new NullPointerException("sections == null");
80 for (Section section : sections) {
/dalvik/dx/src/com/android/dx/io/
H A DDexIndexPrinter.java36 for (TableOfContents.Section section : tableOfContents.sections) {
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java51 /** All IDs and definitions sections */
231 * Merges already-sorted sections, reading only two values into memory
295 * Merges unsorted sections by reading them completely into memory and
974 * Byte counts for the sections written when creating a dex. Target sizes
1030 mapList = SizeOf.UINT + (contents.sections.length * SizeOf.MAP_ITEM);

Completed in 431 milliseconds