/libcore/ojluni/annotations/hiddenapi/java/util/ |
D | Arrays.java | 38 private static void rangeCheck(int arrayLength, int fromIndex, int toIndex) { in rangeCheck() 46 public static void sort(int[] a, int fromIndex, int toIndex) { in sort() 54 public static void sort(long[] a, int fromIndex, int toIndex) { in sort() 62 public static void sort(short[] a, int fromIndex, int toIndex) { in sort() 70 public static void sort(char[] a, int fromIndex, int toIndex) { in sort() 78 public static void sort(byte[] a, int fromIndex, int toIndex) { in sort() 86 public static void sort(float[] a, int fromIndex, int toIndex) { in sort() 94 public static void sort(double[] a, int fromIndex, int toIndex) { in sort() 102 public static void parallelSort(byte[] a, int fromIndex, int toIndex) { in parallelSort() 110 public static void parallelSort(char[] a, int fromIndex, int toIndex) { in parallelSort() [all …]
|
D | ArrayList.java | 146 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 187 public java.util.List<E> subList(int fromIndex, int toIndex) { in subList() 191 static void subListRangeCheck(int fromIndex, int toIndex, int size) { in subListRangeCheck() 351 SubList(java.util.AbstractList<E> parent, int offset, int fromIndex, int toIndex) { in SubList() 375 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 395 public java.util.List<E> subList(int fromIndex, int toIndex) { in subList()
|
/libcore/ojluni/src/main/java/java/util/ |
D | Arrays.java | 130 public static void sort(int[] a, int fromIndex, int toIndex) { in sort() 168 public static void sort(long[] a, int fromIndex, int toIndex) { in sort() 206 public static void sort(short[] a, int fromIndex, int toIndex) { in sort() 244 public static void sort(char[] a, int fromIndex, int toIndex) { in sort() 282 public static void sort(byte[] a, int fromIndex, int toIndex) { in sort() 336 public static void sort(float[] a, int fromIndex, int toIndex) { in sort() 390 public static void sort(double[] a, int fromIndex, int toIndex) { in sort() 432 public static void parallelSort(byte[] a, int fromIndex, int toIndex) { in parallelSort() 474 public static void parallelSort(char[] a, int fromIndex, int toIndex) { in parallelSort() 516 public static void parallelSort(short[] a, int fromIndex, int toIndex) { in parallelSort() [all …]
|
D | HexFormat.java | 356 public String formatHex(byte[] bytes, int fromIndex, int toIndex) { in formatHex() 407 public <A extends Appendable> A formatHex(A out, byte[] bytes, int fromIndex, int toIndex) { in formatHex() 448 private String formatOptDelimiter(byte[] bytes, int fromIndex, int toIndex) { in formatOptDelimiter() 542 public byte[] parseHex(CharSequence string, int fromIndex, int toIndex) { in parseHex() 602 public byte[] parseHex(char[] chars, int fromIndex, int toIndex) { in parseHex() 905 private static int checkDigitCount(int fromIndex, int toIndex, int limit) { in checkDigitCount() 1019 public static int fromHexDigits(CharSequence string, int fromIndex, int toIndex) { in fromHexDigits() 1080 public static long fromHexDigitsToLong(CharSequence string, int fromIndex, int toIndex) { in fromHexDigitsToLong()
|
D | AbstractList.java | 498 public List<E> subList(int fromIndex, int toIndex) { in subList() 505 static void subListRangeCheck(int fromIndex, int toIndex, int size) { in subListRangeCheck() 596 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 760 public SubList(AbstractList<E> root, int fromIndex, int toIndex) { in SubList() 771 protected SubList(SubList<E> parent, int fromIndex, int toIndex) { in SubList() 811 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 890 public List<E> subList(int fromIndex, int toIndex) { in subList() 927 int fromIndex, int toIndex) { in RandomAccessSubList() 935 int fromIndex, int toIndex) { in RandomAccessSubList() 939 public List<E> subList(int fromIndex, int toIndex) { in subList()
|
D | BitSet.java | 363 private static void checkRange(int fromIndex, int toIndex) { in checkRange() 406 public void flip(int fromIndex, int toIndex) { in flip() 483 public void set(int fromIndex, int toIndex) { in set() 527 public void set(int fromIndex, int toIndex, boolean value) { in set() 566 public void clear(int fromIndex, int toIndex) { in clear() 647 public BitSet get(int fromIndex, int toIndex) { in get()
|
D | Objects.java | 410 int checkFromToIndex(int fromIndex, int toIndex, int length) { in checkFromToIndex() 486 long checkFromToIndex(long fromIndex, long toIndex, long length) { in checkFromToIndex()
|
D | ImmutableCollections.java | 273 public List<E> subList(int fromIndex, int toIndex) { in subList() 279 static void subListRangeCheck(int fromIndex, int toIndex, int size) { in subListRangeCheck() 463 static <E> SubList<E> fromSubList(SubList<E> parent, int fromIndex, int toIndex) { in fromSubList() 471 static <E> SubList<E> fromList(AbstractImmutableList<E> list, int fromIndex, int toIndex) { in fromList() 493 public List<E> subList(int fromIndex, int toIndex) { in subList()
|
D | ArrayList.java | 824 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 860 private static String outOfBoundsMsg(int fromIndex, int toIndex) { in outOfBoundsMsg() 1206 public List<E> subList(int fromIndex, int toIndex) { in subList() 1220 public SubList(ArrayList<E> root, int fromIndex, int toIndex) { in SubList() 1231 private SubList(SubList<E> parent, int fromIndex, int toIndex) { in SubList() 1273 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 1498 public List<E> subList(int fromIndex, int toIndex) { in subList()
|
D | Spliterators.java | 175 public static <T> Spliterator<T> spliterator(Object[] array, int fromIndex, int toIndex, in spliterator() 177 checkFromToBounds(Objects.requireNonNull(array).length, fromIndex, toIndex); in spliterator() local 237 public static Spliterator.OfInt spliterator(int[] array, int fromIndex, int toIndex, in spliterator() 239 checkFromToBounds(Objects.requireNonNull(array).length, fromIndex, toIndex); in spliterator() local 303 public static Spliterator.OfLong spliterator(long[] array, int fromIndex, int toIndex, in spliterator() 305 checkFromToBounds(Objects.requireNonNull(array).length, fromIndex, toIndex); in spliterator() local 369 public static Spliterator.OfDouble spliterator(double[] array, int fromIndex, int toIndex, in spliterator() 371 checkFromToBounds(Objects.requireNonNull(array).length, fromIndex, toIndex); in spliterator() local
|
/libcore/ojluni/annotations/sdk/nullability/java/util/ |
D | Arrays.annotated.java | 48 public static void sort(int @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Run… in sort() 52 public static void sort(long @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Ru… in sort() 56 public static void sort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new R… in sort() 60 public static void sort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Ru… in sort() 64 public static void sort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new Ru… in sort() 68 public static void sort(float @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new R… in sort() 72 public static void sort(double @libcore.util.NonNull [] a, int fromIndex, int toIndex) { throw new … in sort() 76 public static void parallelSort(byte @libcore.util.NonNull [] a, int fromIndex, int toIndex) { thro… in parallelSort() 80 public static void parallelSort(char @libcore.util.NonNull [] a, int fromIndex, int toIndex) { thro… in parallelSort() 84 public static void parallelSort(short @libcore.util.NonNull [] a, int fromIndex, int toIndex) { thr… in parallelSort() [all …]
|
D | AbstractList.annotated.java | 59 …va.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) { throw new Ru… in subList() 65 protected void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } in removeRange()
|
D | ArrayList.annotated.java | 91 protected void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } in removeRange() 103 …va.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) { throw new Ru… in subList()
|
D | Vector.annotated.java | 121 …va.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) { throw new Ru… in subList() 123 protected synchronized void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("S… in removeRange()
|
/libcore/ojluni/src/test/java/util/Arrays/ |
D | Sorting.java | 316 int toIndex = length - m; in testSubArray() local 318 prepareSubArray((int[]) gold[0], fromIndex, toIndex); in testSubArray() local 539 private void prepareSubArray(int[] a, int fromIndex, int toIndex) { in prepareSubArray() 1223 private void checkSubArray(Object a, int fromIndex, int toIndex) { in checkSubArray() 1225 checkSubArray((int[]) a, fromIndex, toIndex); in checkSubArray() local 1227 checkSubArray((long[]) a, fromIndex, toIndex); in checkSubArray() local 1229 checkSubArray((byte[]) a, fromIndex, toIndex); in checkSubArray() local 1231 checkSubArray((char[]) a, fromIndex, toIndex); in checkSubArray() local 1233 checkSubArray((short[]) a, fromIndex, toIndex); in checkSubArray() local 1235 checkSubArray((float[]) a, fromIndex, toIndex); in checkSubArray() local [all …]
|
/libcore/ojluni/src/main/java/jdk/internal/util/ |
D | Preconditions.java | 75 int fromIndex, int toIndex, int length) { in outOfBoundsCheckFromToIndex() 93 long fromIndex, long toIndex, long length) { in outOfBoundsCheckFromToIndex()
|
/libcore/ojluni/annotations/flagged_api/java/util/ |
D | Objects.annotated.java | 38 public static int checkFromToIndex(int fromIndex, int toIndex, int length) { throw new RuntimeExcep… in checkFromToIndex() 40 public static long checkFromToIndex(long fromIndex, long toIndex, long length) { throw new RuntimeE… in checkFromToIndex()
|
D | ArrayList.annotated.java | 99 protected void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } in removeRange() 111 public java.util.List<E> subList(int fromIndex, int toIndex) { throw new RuntimeException("Stub!");… in subList()
|
/libcore/ojluni/annotations/hiddenapi/java/util/concurrent/ |
D | CopyOnWriteArrayList.java | 151 void removeRange(int fromIndex, int toIndex) { in removeRange() 244 public java.util.List<E> subList(int fromIndex, int toIndex) { in subList() 335 COWSubList(java.util.concurrent.CopyOnWriteArrayList<E> list, int fromIndex, int toIndex) { in COWSubList() 383 public java.util.List<E> subList(int fromIndex, int toIndex) { in subList()
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | JarIndex.java | 95 public void merge(sun.misc.JarIndex toIndex, java.lang.String path) { in merge()
|
/libcore/luni/src/test/androidsdk34/src/libcore/android34/java/util/ |
D | ListTest.java | 155 public List<String> subList(int fromIndex, int toIndex) { in subList() 392 public List<Object> subList(int fromIndex, int toIndex) { in subList()
|
D | ListWithPrivateMethods.java | 137 public List<Object> subList(int fromIndex, int toIndex) { in subList()
|
D | PackageProtectedList.java | 138 public List<Object> subList(int fromIndex, int toIndex) { in subList()
|
/libcore/luni/src/test/java/libcore/java/util/ |
D | ObjectsTest.java | 86 private static void assertFromToIndexOutOfBounds(int fromIndex, int toIndex, int length) { in assertFromToIndexOutOfBounds()
|
/libcore/ojluni/src/test/java/util/SequencedCollection/ |
D | SimpleList.java | 151 public List<E> subList(int fromIndex, int toIndex) { in subList()
|