Home
last modified time | relevance | path

Searched defs:fromIndex (Results 1 – 25 of 30) 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/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 …Null public java.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) … in subList()
65 protected void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } in removeRange()
DArrayList.annotated.java79 protected void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("Stub!"); } in removeRange()
91 …Null public java.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) … in subList()
DVector.annotated.java121 …ynchronized java.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex) … in subList()
123 protected synchronized void removeRange(int fromIndex, int toIndex) { throw new RuntimeException("S… in removeRange()
DList.annotated.java86 …nNull public java.util.List<@libcore.util.NullFromTypeParam E> subList(int fromIndex, int toIndex); in subList()
/libcore/ojluni/src/main/java/java/util/
DArrays.java114 private static void rangeCheck(int arrayLength, int fromIndex, int toIndex) { in rangeCheck()
170 public static void sort(int[] a, int fromIndex, int toIndex) { in sort()
210 public static void sort(long[] a, int fromIndex, int toIndex) { in sort()
250 public static void sort(short[] a, int fromIndex, int toIndex) { in sort()
290 public static void sort(char[] a, int fromIndex, int toIndex) { in sort()
330 public static void sort(byte[] a, int fromIndex, int toIndex) { in sort()
386 public static void sort(float[] a, int fromIndex, int toIndex) { in sort()
442 public static void sort(double[] a, int fromIndex, int toIndex) { in sort()
504 public static void parallelSort(byte[] a, int fromIndex, int toIndex) { in parallelSort()
574 public static void parallelSort(char[] a, int fromIndex, int toIndex) { in parallelSort()
[all …]
DBitSet.java360 private static void checkRange(int fromIndex, int toIndex) { in checkRange()
403 public void flip(int fromIndex, int toIndex) { in flip()
480 public void set(int fromIndex, int toIndex) { in set()
524 public void set(int fromIndex, int toIndex, boolean value) { in set()
563 public void clear(int fromIndex, int toIndex) { in clear()
644 public BitSet get(int fromIndex, int toIndex) { in get()
710 public int nextSetBit(int fromIndex) { in nextSetBit()
740 public int nextClearBit(int fromIndex) { in nextClearBit()
784 public int previousSetBit(int fromIndex) { in previousSetBit()
822 public int previousClearBit(int fromIndex) { in previousClearBit()
DAbstractList.java483 public List<E> subList(int fromIndex, int toIndex) { in subList()
567 protected void removeRange(int fromIndex, int toIndex) { in removeRange()
618 SubList(AbstractList<E> list, int fromIndex, int toIndex) { in SubList()
666 protected void removeRange(int fromIndex, int toIndex) { in removeRange()
749 public List<E> subList(int fromIndex, int toIndex) { in subList()
DArrayList.java643 protected void removeRange(int fromIndex, int toIndex) { in removeRange()
1007 public List<E> subList(int fromIndex, int toIndex) { in subList()
1012 static void subListRangeCheck(int fromIndex, int toIndex, int size) { in subListRangeCheck()
1029 int offset, int fromIndex, int toIndex) { in SubList()
1082 protected void removeRange(int fromIndex, int toIndex) { in removeRange()
1237 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
DJumboEnumSet.java55 int fromIndex = from.ordinal() >>> 6; in addRange() local
DList.java731 List<E> subList(int fromIndex, int toIndex); in subList()
/libcore/ojluni/annotations/hiddenapi/java/lang/
DString.java217 public int indexOf(int ch, int fromIndex) { in indexOf()
221 private int indexOfSupplementary(int ch, int fromIndex) { in indexOfSupplementary()
229 public int lastIndexOf(int ch, int fromIndex) { in lastIndexOf()
233 private int lastIndexOfSupplementary(int ch, int fromIndex) { in lastIndexOfSupplementary()
241 public int indexOf(java.lang.String str, int fromIndex) { in indexOf()
245 private static int indexOf(java.lang.String source, java.lang.String target, int fromIndex) { in indexOf()
254 int fromIndex) { in indexOf()
266 int fromIndex) { in indexOf()
274 public int lastIndexOf(java.lang.String str, int fromIndex) { in lastIndexOf()
279 java.lang.String source, java.lang.String target, int fromIndex) { in lastIndexOf()
[all …]
DAbstractStringBuilder.java242 public int indexOf(java.lang.String str, int fromIndex) { in indexOf()
250 public int lastIndexOf(java.lang.String str, int fromIndex) { in lastIndexOf()
/libcore/ojluni/src/main/java/java/lang/
DString.java1541 public int indexOf(int ch, int fromIndex) { in indexOf()
1567 private int indexOfSupplementary(int ch, int fromIndex) { in indexOfSupplementary()
1642 public int lastIndexOf(int ch, int fromIndex) { in lastIndexOf()
1661 private int lastIndexOfSupplementary(int ch, int fromIndex) { in lastIndexOfSupplementary()
1709 public int indexOf(String str, int fromIndex) { in indexOf()
1723 private static int indexOf(String source, String target, int fromIndex) { in indexOf()
1774 String target, int fromIndex) { in indexOf()
1795 int fromIndex) { in indexOf()
1866 public int lastIndexOf(String str, int fromIndex) { in lastIndexOf()
1880 private static int lastIndexOf(String source, String target, int fromIndex) { in lastIndexOf()
[all …]
DStringBuilder.java385 public int indexOf(String str, int fromIndex) { in indexOf()
395 public int lastIndexOf(String str, int fromIndex) { in lastIndexOf()
DStringBuffer.java635 public synchronized int indexOf(String str, int fromIndex) { in indexOf()
652 public synchronized int lastIndexOf(String str, int fromIndex) { in lastIndexOf()
/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/sdk/nullability/java/lang/
DString.annotated.java122 public int indexOf(int ch, int fromIndex) { throw new RuntimeException("Stub!"); } in indexOf()
126 public int lastIndexOf(int ch, int fromIndex) { throw new RuntimeException("Stub!"); } in lastIndexOf()
130 public int indexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw new RuntimeEx… in indexOf()
134 public int lastIndexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw new Runti… in lastIndexOf()
DStringBuffer.annotated.java131 public synchronized int indexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw … in indexOf()
135 public synchronized int lastIndexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { th… in lastIndexOf()
DStringBuilder.annotated.java102 public int indexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw new RuntimeEx… in indexOf()
106 public int lastIndexOf(@libcore.util.NonNull java.lang.String str, int fromIndex) { throw new Runti… in lastIndexOf()
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DInnerNodeImpl.java168 private void refreshIndices(int fromIndex) { in refreshIndices()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DConcurrentModTest.java647 public void removeRange(int fromIndex, int toIndex) { in removeRange()

12