/libcore/ojluni/src/test/java/util/Arrays/ |
D | SortingHelper.java | 48 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/ |
D | OldTreeSetTest.java | 142 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
|
D | OldTreeMapTest.java | 218 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/ |
D | Arrays.java | 42 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 …]
|
D | Vector.java | 266 public synchronized void sort(java.util.Comparator<? super E> c) { in sort() method in Vector
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Arrays.annotated.java | 46 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 …]
|
D | ArrayList.annotated.java | 113 public void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFromTypePara… in sort() method in ArrayList
|
D | Collections.annotated.java | 38 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
|
D | Vector.annotated.java | 137 public synchronized void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.Nul… in sort() method in Vector
|
D | List.annotated.java | 62 public default void sort(@libcore.util.Nullable java.util.Comparator<? super @libcore.util.NullFrom… in sort() method
|
/libcore/ojluni/src/test/java/lang/ref/ |
D | ReferenceEnqueuePendingTest.java | 201 private static void sort(int length) { in sort() method in ReferenceEnqueuePendingTest
|
/libcore/ojluni/src/main/java/java/util/ |
D | Arrays.java | 106 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 …]
|
D | DualPivotQuicksort.java | 155 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
|
D | ComparableTimSort.java | 179 static void sort(Object[] a, int lo, int hi, Object[] work, int workBase, int workLen) { in sort() method in ComparableTimSort
|
D | TimSort.java | 210 static <T> void sort(T[] a, int lo, int hi, Comparator<? super T> c, in sort() method in TimSort
|
D | Collections.java | 156 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
|
D | ReverseOrderListView.java | 381 public void sort(Comparator<? super E> c) { in sort() method in ReverseOrderListView
|
D | List.java | 526 default void sort(Comparator<? super E> c) { in sort() method
|
/libcore/ojluni/annotations/flagged_api/java/util/ |
D | Collections.annotated.java | 35 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
|
D | ArrayList.annotated.java | 121 public void sort(java.util.Comparator<? super E> c) { throw new RuntimeException("Stub!"); } in sort() method in ArrayList
|
D | List.annotated.java | 60 public default void sort(java.util.Comparator<? super E> c) { throw new RuntimeException("Stub!"); } in sort() method
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 203 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/ |
D | CopyOnWriteArrayList.annotated.java | 108 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/ |
D | CopyOnWriteArrayList.annotated.java | 119 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/ |
D | CopyOnWriteArrayList.java | 974 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
|