Searched defs:sort (Results 1 - 5 of 5) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DMixedItemSection.java46 /** sort by type only */
49 /** sort in class-major order, with instances sorted per-class */
69 /** {@code non-null;} how to sort the items */
70 private final SortType sort; field in class:MixedItemSection
86 * @param sort how the items should be sorted in the final output
89 SortType sort) {
94 this.sort = sort;
296 switch (sort) {
298 Collections.sort(item
88 MixedItemSection(String name, DexFile file, int alignment, SortType sort) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DIntList.java265 // sort status is unchanged
357 public void sort() { method in class:IntList
361 Arrays.sort(values, 0, size);
444 * @see #sort
/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java44 * If true, sort such that classes appear before their inner
48 private final boolean sort; field in class:ClassPathOpener
109 * @param sort if true, sort such that classes appear before their inner
114 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) { argument
115 this(pathname, sort, acceptAll, consumer);
122 * @param sort if true, sort such that classes appear before their inner
127 public ClassPathOpener(String pathname, boolean sort, FileNameFilter filter, argument
130 this.sort
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DMixedItemSection.java45 /** sort by type only */
48 /** sort in class-major order, with instances sorted per-class */
68 /** {@code non-null;} how to sort the items */
69 private final SortType sort; field in class:MixedItemSection
85 * @param sort how the items should be sorted in the final output
88 SortType sort) {
93 this.sort = sort;
295 switch (sort) {
297 Collections.sort(item
87 MixedItemSection(String name, DexFile file, int alignment, SortType sort) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIntList.java265 // sort status is unchanged
357 public void sort() { method in class:IntList
361 Arrays.sort(values, 0, size);
445 * @see #sort

Completed in 162 milliseconds