| /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()
|
| D | Vector.java | 230 public synchronized java.util.List<E> subList(int fromIndex, int toIndex) { in subList() 234 protected synchronized void removeRange(int fromIndex, int toIndex) { in removeRange()
|
| /libcore/ojluni/src/main/java/java/util/ |
| 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 | 496 public List<E> subList(int fromIndex, int toIndex) { in subList() 503 static void subListRangeCheck(int fromIndex, int toIndex, int size) { in subListRangeCheck() 594 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 758 public SubList(AbstractList<E> root, int fromIndex, int toIndex) { in SubList() 769 protected SubList(SubList<E> parent, int fromIndex, int toIndex) { in SubList() 809 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 888 public List<E> subList(int fromIndex, int toIndex) { in subList() 925 int fromIndex, int toIndex) { in RandomAccessSubList() 933 int fromIndex, int toIndex) { in RandomAccessSubList() 937 public List<E> subList(int fromIndex, int toIndex) { in subList()
|
| D | Arrays.java | 122 public static void sort(int[] a, int fromIndex, int toIndex) { in sort() 160 public static void sort(long[] a, int fromIndex, int toIndex) { in sort() 198 public static void sort(short[] a, int fromIndex, int toIndex) { in sort() 236 public static void sort(char[] a, int fromIndex, int toIndex) { in sort() 274 public static void sort(byte[] a, int fromIndex, int toIndex) { in sort() 328 public static void sort(float[] a, int fromIndex, int toIndex) { in sort() 382 public static void sort(double[] a, int fromIndex, int toIndex) { in sort() 424 public static void parallelSort(byte[] a, int fromIndex, int toIndex) { in parallelSort() 466 public static void parallelSort(char[] a, int fromIndex, int toIndex) { in parallelSort() 508 public static void parallelSort(short[] a, int fromIndex, int toIndex) { in parallelSort() [all …]
|
| 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 | 384 int checkFromToIndex(int fromIndex, int toIndex, int length) { in checkFromToIndex() 461 long checkFromToIndex(long fromIndex, long toIndex, long length) { in checkFromToIndex()
|
| D | ImmutableCollections.java | 274 public List<E> subList(int fromIndex, int toIndex) { in subList() 280 static void subListRangeCheck(int fromIndex, int toIndex, int size) { in subListRangeCheck() 459 static <E> SubList<E> fromSubList(SubList<E> parent, int fromIndex, int toIndex) { in fromSubList() 467 static <E> SubList<E> fromList(AbstractImmutableList<E> list, int fromIndex, int toIndex) { in fromList() 489 public List<E> subList(int fromIndex, int toIndex) { in subList()
|
| D | ArrayList.java | 742 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 778 private static String outOfBoundsMsg(int fromIndex, int toIndex) { in outOfBoundsMsg() 1124 public List<E> subList(int fromIndex, int toIndex) { in subList() 1138 public SubList(ArrayList<E> root, int fromIndex, int toIndex) { in SubList() 1149 private SubList(SubList<E> parent, int fromIndex, int toIndex) { in SubList() 1191 protected void removeRange(int fromIndex, int toIndex) { in removeRange() 1416 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
|
| D | JumboEnumSet.java | 57 int toIndex = to.ordinal() >>> 6; in addRange() local
|
| D | Vector.java | 1120 public synchronized List<E> subList(int fromIndex, int toIndex) { in subList() 1132 protected synchronized void removeRange(int fromIndex, int toIndex) { in removeRange()
|
| /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 | 79 protected void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } in removeRange() 91 …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/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/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/java/libcore/java/util/ |
| D | ObjectsTest.java | 86 private static void assertFromToIndexOutOfBounds(int fromIndex, int toIndex, int length) { in assertFromToIndexOutOfBounds()
|
| /libcore/ojluni/src/main/java/jdk/internal/util/jar/ |
| D | JarIndex.java | 322 public void merge(JarIndex toIndex, String path) { in merge()
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| D | ConcurrentModTest.java | 647 public void removeRange(int fromIndex, int toIndex) { in removeRange()
|
| /libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/ |
| D | CopyOnWriteArrayList.annotated.java | 124 …va.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) { throw new Ru… in subList()
|
| /libcore/ojluni/src/main/java/java/util/concurrent/ |
| D | CopyOnWriteArrayList.java | 563 void removeRange(int fromIndex, int toIndex) { in removeRange() 1175 public List<E> subList(int fromIndex, int toIndex) { in subList() 1461 public List<E> subList(int fromIndex, int toIndex) { in subList()
|