Searched refs:sort (Results 1 - 25 of 29) sorted by relevance

12

/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java43 * If true, sort such that classes appear before their inner
47 private final boolean sort; field in class:ClassPathOpener
108 * @param sort if true, sort such that classes appear before their inner
113 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) { argument
114 this(pathname, sort, acceptAll, consumer);
121 * @param sort if true, sort such that classes appear before their inner
126 public ClassPathOpener(String pathname, boolean sort, FileNameFilter filter, argument
129 this.sort
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DListIntSet.java34 ints.sort();
86 ints.sort();
93 ints.sort();
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/util/
H A DListIntSet.java34 ints.sort();
90 ints.sort();
97 ints.sort();
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
H A DLabeledList.java139 Arrays.sort(result);
/dalvik/dx/tests/134-maindexlist-lambdas/
H A Drun31 java -classpath $dxjar com.android.multidex.MainDexListBuilder traceOut.jar classes.jar | sort
/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...]
H A DClassDataItem.java238 Collections.sort(instanceFields);
245 Collections.sort(directMethods);
252 Collections.sort(virtualMethods);
282 // First sort the statics into their final order.
283 Collections.sort(staticFields);
H A DAnnotationsDirectoryItem.java308 Collections.sort(fieldAnnotations);
318 Collections.sort(methodAnnotations);
328 Collections.sort(parameterAnnotations);
H A DAnnotationItem.java91 * @param array {@code non-null;} array to sort
94 Arrays.sort(array, TYPE_ID_SORTER);
H A DDebugInfoEncoder.java495 Collections.sort (result, new Comparator<PositionList.Entry>() {
552 Collections.sort(result, new Comparator<LocalList.Entry>() {
/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 */
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...]
H A DClassDataItem.java234 Collections.sort(instanceFields);
241 Collections.sort(directMethods);
248 Collections.sort(virtualMethods);
278 // First sort the statics into their final order.
279 Collections.sort(staticFields);
H A DAnnotationsDirectoryItem.java312 Collections.sort(fieldAnnotations);
322 Collections.sort(methodAnnotations);
332 Collections.sort(parameterAnnotations);
H A DAnnotationItem.java90 * @param array {@code non-null;} array to sort
93 Arrays.sort(array, TYPE_ID_SORTER);
H A DDebugInfoEncoder.java503 Collections.sort (result, new Comparator<PositionList.Entry>() {
562 Collections.sort(result, new Comparator<LocalList.Entry>() {
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRopMethod.java186 preds.sort();
191 exitPredecessors.sort();
/dalvik/dx/src/com/android/dx/rop/code/
H A DRopMethod.java185 preds.sort();
190 exitPredecessors.sort();
/dalvik/dx/tests/135-invoke-custom/
H A Drun60 sort | \
/dalvik/dx/src/com/android/dx/command/dump/
H A DSsaDumper.java126 Collections.sort(sortedBlocks, SsaBasicBlock.LABEL_COMPARATOR);
/dalvik/dx/src/com/android/dex/
H A DTableOfContents.java147 Arrays.sort(sections);
/dalvik/dx/src/com/android/dx/ssa/
H A DConstCollector.java242 Collections.sort(constantList, new Comparator<Constant>() {
/dalvik/dx/src/com/android/dx/ssa/back/
H A DSsaToRop.java178 * After all move insns have been added, sort them so they don't
368 Arrays.sort(ret, new Comparator<Integer>() {
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java173 Arrays.sort(contentsOut.sections);
318 Collections.sort(all);
637 Arrays.sort(sortableTypes, SortableType.NULLS_LAST_ORDER);
647 * Reads just enough data on each class so that we can sort it and then find

Completed in 411 milliseconds

12