Home
last modified time | relevance | path

Searched defs:toIndex (Results 1 – 25 of 41) sorted by relevance

12

/libcore/ojluni/annotations/hiddenapi/java/util/
DArrays.java38 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 …]
DArrayList.java146 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/
DArrays.java130 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 …]
DHexFormat.java356 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()
DAbstractList.java498 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()
DBitSet.java363 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()
DObjects.java410 int checkFromToIndex(int fromIndex, int toIndex, int length) { in checkFromToIndex()
486 long checkFromToIndex(long fromIndex, long toIndex, long length) { in checkFromToIndex()
DImmutableCollections.java273 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()
DArrayList.java824 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()
DSpliterators.java175 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/
DArrays.annotated.java48 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 …]
DAbstractList.annotated.java59 …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()
DArrayList.annotated.java91 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()
DVector.annotated.java121 …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/
DSorting.java316 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/
DPreconditions.java75 int fromIndex, int toIndex, int length) { in outOfBoundsCheckFromToIndex()
93 long fromIndex, long toIndex, long length) { in outOfBoundsCheckFromToIndex()
/libcore/ojluni/annotations/flagged_api/java/util/
DObjects.annotated.java38 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()
DArrayList.annotated.java99 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/
DCopyOnWriteArrayList.java151 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/
DJarIndex.java95 public void merge(sun.misc.JarIndex toIndex, java.lang.String path) { in merge()
/libcore/luni/src/test/androidsdk34/src/libcore/android34/java/util/
DListTest.java155 public List<String> subList(int fromIndex, int toIndex) { in subList()
392 public List<Object> subList(int fromIndex, int toIndex) { in subList()
DListWithPrivateMethods.java137 public List<Object> subList(int fromIndex, int toIndex) { in subList()
DPackageProtectedList.java138 public List<Object> subList(int fromIndex, int toIndex) { in subList()
/libcore/luni/src/test/java/libcore/java/util/
DObjectsTest.java86 private static void assertFromToIndexOutOfBounds(int fromIndex, int toIndex, int length) { in assertFromToIndexOutOfBounds()
/libcore/ojluni/src/test/java/util/SequencedCollection/
DSimpleList.java151 public List<E> subList(int fromIndex, int toIndex) { in subList()

12