Searched defs:section (Results 1 - 4 of 4) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DMapItem.java37 /** {@code non-null;} section this instance covers */
38 private final Section section; field in class:MapItem
61 * given map section.
64 * @param mapSection {@code non-null;} the section that the resulting map
80 for (Section section : sections) {
86 for (Item item : section.items()) {
90 items.add(new MapItem(currentType, section,
102 // Add a MapItem for the final items in the section.
103 items.add(new MapItem(currentType, section,
105 } else if (section
124 MapItem(ItemType type, Section section, Item firstItem, Item lastItem, int itemCount) argument
161 MapItem(Section section) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DMapItem.java36 /** {@code non-null;} section this instance covers */
37 private final Section section; field in class:MapItem
60 * given map section.
63 * @param mapSection {@code non-null;} the section that the resulting map
79 for (Section section : sections) {
85 for (Item item : section.items()) {
89 items.add(new MapItem(currentType, section,
101 // Add a MapItem for the final items in the section.
102 items.add(new MapItem(currentType, section,
104 } else if (section
123 MapItem(ItemType type, Section section, Item firstItem, Item lastItem, int itemCount) argument
160 MapItem(Section section) argument
[all...]
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java129 Section section = getSection(type);
133 if ((section.size != 0 && section.size != size)
134 || (section.off != -1 && section.off != offset)) {
138 section.size = size;
139 section.off = offset;
141 if (previous != null && previous.off > section.off) {
142 throw new DexException("Map is unsorted at " + previous + ", " + section);
145 previous = section;
234 compareTo(Section section) argument
[all...]
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java232 * Reads an IDs section of two dex files and writes an IDs section of a
287 private int readIntoMap(Dex.Section in, TableOfContents.Section section, IndexMap indexMap, argument
290 if (index < section.size) {
338 TableOfContents.Section section = getSection(source.getTableOfContents());
339 if (!section.exists()) {
344 Dex.Section in = source.open(section.off);
345 for (int i = 0; i < section.size; i++) {
687 TableOfContents.Section section = in.getTableOfContents().annotationSets;
688 if (section
[all...]

Completed in 51 milliseconds