Home
last modified time | relevance | path

Searched defs:sort (Results 1 – 25 of 33) sorted by relevance

12

/libcore/ojluni/src/test/java/util/Arrays/
DSortingHelper.java48 public void sort(Object a) { in sort() method
106 public void sort(Object a, int low, int high) { in sort() method
164 public void sort(Object[] a) { in sort() method
169 public void sort(Object[] a, Comparator comparator) { in sort() method
177 public void sort(Object a) { in sort() method
235 public void sort(Object a, int low, int high) { in sort() method
293 public void sort(Object[] a) { in sort() method
298 public void sort(Object[] a, Comparator comparator) { in sort() method
306 public void sort(Object a) { in sort() method
364 public void sort(Object a, int low, int high) { in sort() method
[all …]
/libcore/luni/src/test/java/libcore/java/util/
DOldTreeSetTest.java142 SortedSet sort = ts.headSet(Integer.valueOf(100)); in test_headSetLjava_lang_Object() local
228 SortedSet sort = ts.tailSet(Integer.valueOf(101)); in test_tailSetLjava_lang_Object() local
DOldTreeMapTest.java218 SortedMap sort = tm.headMap("100"); in test_headMapLjava_lang_Object() local
462 SortedMap sort = tm.tailMap("99"); in test_tailMapLjava_lang_Object() local
/libcore/ojluni/annotations/hiddenapi/java/util/
DArrays.java42 public static void sort(int[] a) { in sort() method in Arrays
46 public static void sort(int[] a, int fromIndex, int toIndex) { in sort() method in Arrays
50 public static void sort(long[] a) { in sort() method in Arrays
54 public static void sort(long[] a, int fromIndex, int toIndex) { in sort() method in Arrays
58 public static void sort(short[] a) { in sort() method in Arrays
62 public static void sort(short[] a, int fromIndex, int toIndex) { in sort() method in Arrays
66 public static void sort(char[] a) { in sort() method in Arrays
70 public static void sort(char[] a, int fromIndex, int toIndex) { in sort() method in Arrays
74 public static void sort(byte[] a) { in sort() method in Arrays
78 public static void sort(byte[] a, int fromIndex, int toIndex) { in sort() method in Arrays
[all …]
DVector.java266 public synchronized void sort(java.util.Comparator<? super E> c) { in sort() method in Vector
/libcore/ojluni/annotations/sdk/nullability/java/util/
DArrays.annotated.java46 public static void sort(int @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); } in sort() method in Arrays
48 public static void sort(int @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Run… in sort() method in Arrays
50 public static void sort(long @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); } in sort() method in Arrays
52 public static void sort(long @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Ru… in sort() method in Arrays
54 public static void sort(short @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); } in sort() method in Arrays
56 public static void sort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new R… in sort() method in Arrays
58 public static void sort(char @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); } in sort() method in Arrays
60 public static void sort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Ru… in sort() method in Arrays
62 public static void sort(byte @libcore.util.NonNull [] a) { throw new RuntimeException("Stub!"); } in sort() method in Arrays
64 public static void sort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Ru… in sort() method in Arrays
[all …]
DArrayList.annotated.java113 public void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypePara… in sort() method in ArrayList
DCollections.annotated.java38 public static <T extends java.lang.Comparable<? super T>> void sort(@libcore.util.NonNull java.util… in sort() method in Collections
40 public static <T> void sort(@libcore.util.NonNull java.util.List<@libcore.util.NullFromTypeParam T>… in sort() method in Collections
DVector.annotated.java137 public synchronized void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.Nul… in sort() method in Vector
DList.annotated.java62 public default void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFrom… in sort() method
/libcore/ojluni/src/test/java/lang/ref/
DReferenceEnqueuePendingTest.java201 private static void sort(int length) { in sort() method in ReferenceEnqueuePendingTest
/libcore/ojluni/src/main/java/java/util/
DArrays.java106 public static void sort(int[] a) { in sort() method in Arrays
129 public static void sort(int[] a, int fromIndex, int toIndex) { in sort() method in Arrays
144 public static void sort(long[] a) { in sort() method in Arrays
167 public static void sort(long[] a, int fromIndex, int toIndex) { in sort() method in Arrays
182 public static void sort(short[] a) { in sort() method in Arrays
205 public static void sort(short[] a, int fromIndex, int toIndex) { in sort() method in Arrays
220 public static void sort(char[] a) { in sort() method in Arrays
243 public static void sort(char[] a, int fromIndex, int toIndex) { in sort() method in Arrays
258 public static void sort(byte[] a) { in sort() method in Arrays
281 public static void sort(byte[] a, int fromIndex, int toIndex) { in sort() method in Arrays
[all …]
DDualPivotQuicksort.java155 static void sort(int[] a, int parallelism, int low, int high) { in sort() method in DualPivotQuicksort
178 static void sort(Sorter sorter, int[] a, int bits, int low, int high) { in sort() method in DualPivotQuicksort
2063 static void sort(short[] a, int low, int high) { in sort() method
2081 static void sort(short[] a, int bits, int low, int high) { in sort() method
2398 static void sort(float[] a, int parallelism, int low, int high) { in sort() method
2473 static void sort(Sorter sorter, float[] a, int bits, int low, int high) { in sort() method
3279 static void sort(Sorter sorter, double[] a, int bits, int low, int high) { in sort() method
DComparableTimSort.java179 static void sort(Object[] a, int lo, int hi, Object[] work, int workBase, int workLen) { in sort() method in ComparableTimSort
DTimSort.java210 static <T> void sort(T[] a, int lo, int hi, Comparator<? super T> c, in sort() method in TimSort
DCollections.java156 public static <T extends Comparable<? super T>> void sort(List<T> list) { in sort() method in Collections
202 public static <T> void sort(List<T> list, Comparator<? super T> c) { in sort() method in Collections
1567 public void sort(Comparator<? super E> c) { in sort() method in UnmodifiableList
DReverseOrderListView.java381 public void sort(Comparator<? super E> c) { in sort() method in ReverseOrderListView
DList.java526 default void sort(Comparator<? super E> c) { in sort() method
/libcore/ojluni/annotations/flagged_api/java/util/
DCollections.annotated.java35 public static <T extends java.lang.Comparable<? super T>> void sort(java.util.List<T> list) { throw… in sort() method in Collections
37 public static <T> void sort(java.util.List<T> list, java.util.Comparator<? super T> c) { throw new … in sort() method in Collections
DArrayList.annotated.java121 public void sort(java.util.Comparator<? super E> c) { throw new RuntimeException("Stub!"); } in sort() method in ArrayList
DList.annotated.java60 public default void sort(java.util.Comparator<? super E> c) { throw new RuntimeException("Stub!"); } in sort() method
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/
DCopyOnWriteArrayList.java203 public void sort(java.util.Comparator<? super E> c) { in sort() method in CopyOnWriteArrayList
395 public void sort(java.util.Comparator<? super E> c) { in sort() method in CopyOnWriteArrayList.COWSubList
/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/
DCopyOnWriteArrayList.annotated.java108 public void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypePara… in sort() method in CopyOnWriteArrayList
/libcore/ojluni/annotations/flagged_api/java/util/concurrent/
DCopyOnWriteArrayList.annotated.java119 public void sort(java.util.Comparator<? super E> c) { throw new RuntimeException("Stub!"); } in sort() method in CopyOnWriteArrayList
/libcore/ojluni/src/main/java/java/util/concurrent/
DCopyOnWriteArrayList.java974 public void sort(Comparator<? super E> c) { in sort() method in CopyOnWriteArrayList
1620 public void sort(Comparator<? super E> c) { in sort() method in CopyOnWriteArrayList.COWSubList
2064 public void sort(Comparator<? super E> c) { in sort() method in CopyOnWriteArrayList.Reversed

12