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/command/grep/
H A DGrep.java55 private EncodedValueReader newEncodedValueReader(DexBuffer.Section section) { argument
56 return new EncodedValueReader(section) {
/dalvik/dx/src/com/android/dx/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/
H A DTableOfContents.java123 Section section = getSection(type);
127 if ((section.size != 0 && section.size != size)
128 || (section.off != -1 && section.off != offset)) {
132 section.size = size;
133 section.off = offset;
135 if (previous != null && previous.off > section.off) {
136 throw new DexException("Map is unsorted at " + previous + ", " + section);
139 previous = section;
227 compareTo(Section section) argument
[all...]

Completed in 187 milliseconds