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

12

/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
89 * @param sort if true, sort such that classes appear before their inner
94 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) { argument
96 this.sort = sort;
151 // Ensure inner classes sort second
182 if (sort) {
183 Arrays.sort(file
[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();
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);
445 * @see #sort
H A DLabeledList.java139 Arrays.sort(result);
/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.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.java235 Collections.sort(instanceFields);
242 Collections.sort(directMethods);
249 Collections.sort(virtualMethods);
279 // First sort the statics into their final order.
280 Collections.sort(staticFields);
H A DAnnotationsDirectoryItem.java308 Collections.sort(fieldAnnotations);
318 Collections.sort(methodAnnotations);
328 Collections.sort(parameterAnnotations);
H A DAnnotationItem.java89 * @param array {@code non-null;} array to sort
92 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/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.java186 preds.sort();
191 exitPredecessors.sort();
/dalvik/dx/src/com/android/dx/command/dump/
H A DSsaDumper.java134 Collections.sort(sortedBlocks, SsaBasicBlock.LABEL_COMPARATOR);
/dalvik/dx/src/com/android/dx/dex/
H A DTableOfContents.java141 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
365 Arrays.sort(ret, new Comparator<Integer>() {
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DLocalList.java917 * sort it to get a consistent order for everything: Local
936 Arrays.sort(resultArr);
/dalvik/dx/src/com/android/dx/dex/code/
H A DLocalList.java917 * sort it to get a consistent order for everything: Local
936 Arrays.sort(resultArr);
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java304 Collections.sort(all);
559 Arrays.sort(sortableTypes, SortableType.NULLS_LAST_ORDER);
569 * Reads just enough data on each class so that we can sort it and then find

Completed in 555 milliseconds

12