Searched defs:sections (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
H A DMapItem.java60 * the contents of the given array of sections, adding it to the
63 * @param sections 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) {
H A DDexFile.java93 * non-null; array of sections in the order they will appear in the
96 private final Section[] sections; field in class:DexFile
124 * This is the list of sections in the order they appear in
127 sections = new Section[] {
480 * add items happen before the calls to the sections that get
497 // Place the sections within the file.
499 int count = sections.length;
503 Section one = sections[i];
512 * Inform the map of all the sections, and add it
516 MapItem.addMap(sections, ma
[all...]

Completed in 87 milliseconds