Searched defs:endIndex (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DFieldPosition.java36 private int endIndex; field in class:FieldPosition
73 beginIndex == pos.beginIndex && endIndex == pos.endIndex;
87 return endIndex;
106 return attributeHash + field * 10 + beginIndex * 100 + endIndex;
120 endIndex = index;
131 ",endIndex=" + endIndex +
/libcore/luni/src/main/java/java/lang/
H A DStringBuffer.java360 public synchronized int codePointCount(int beginIndex, int endIndex) { argument
361 return super.codePointCount(beginIndex, endIndex);
H A DCharacter.java2072 * {@code endIndex}. Any surrogate values with missing pair values will be
2079 * @param endIndex
2085 * if {@code beginIndex < 0}, {@code beginIndex > endIndex} or
2086 * if {@code endIndex} is greater than the length of {@code seq}.
2090 int endIndex) {
2095 if (beginIndex < 0 || endIndex > len || beginIndex > endIndex) {
2100 for (int i = beginIndex; i < endIndex; i++) {
2103 if (++i < endIndex) {
2139 int endIndex
2089 codePointCount(CharSequence seq, int beginIndex, int endIndex) argument
[all...]
/libcore/luni/src/main/java/java/util/
H A DArrays.java180 * @param endIndex the exclusive start index.
184 * @throws IllegalArgumentException if {@code startIndex > endIndex}
185 * @throws ArrayIndexOutOfBoundsException if {@code startIndex < 0 || endIndex > array.length}
188 public static int binarySearch(byte[] array, int startIndex, int endIndex, byte value) { argument
189 checkBinarySearchBounds(startIndex, endIndex, array.length);
191 int hi = endIndex - 1;
230 * @param endIndex the exclusive start index.
234 * @throws IllegalArgumentException if {@code startIndex > endIndex}
235 * @throws ArrayIndexOutOfBoundsException if {@code startIndex < 0 || endIndex > array.length}
238 public static int binarySearch(char[] array, int startIndex, int endIndex, cha argument
288 binarySearch(double[] array, int startIndex, int endIndex, double value) argument
349 binarySearch(float[] array, int startIndex, int endIndex, float value) argument
410 binarySearch(int[] array, int startIndex, int endIndex, int value) argument
460 binarySearch(long[] array, int startIndex, int endIndex, long value) argument
516 binarySearch(Object[] array, int startIndex, int endIndex, Object value) argument
577 binarySearch(T[] array, int startIndex, int endIndex, T value, Comparator<? super T> comparator) argument
632 binarySearch(short[] array, int startIndex, int endIndex, short value) argument
652 checkBinarySearchBounds(int startIndex, int endIndex, int length) argument
[all...]
H A DLocale.java2072 * Scans elements of {@code subtags} in the range {@code [startIndex, endIndex)}
2076 private static void extractVariantSubtags(String[] subtags, int startIndex, int endIndex, argument
2078 for (int i = startIndex; i < endIndex; i++) {
2090 * Scans elements of {@code subtags} in the range {@code [startIndex, endIndex)}
2095 private static int extractExtensions(String[] subtags, int startIndex, int endIndex, argument
2101 for (; i < endIndex; i++) {

Completed in 138 milliseconds