Lines Matching defs:start

5029      * {@code index} greater than or equal to {@code start}
5033 * {@code start}, and the {@code char} value at
5042 * @param start the index of the first array element in the
5047 * argument is not greater than the {@code start} argument or
5049 * if the {@code start} argument is negative or not less than
5053 public static int codePointBefore(char[] a, int index, int start) {
5054 if (index <= start || start < 0 || start >= a.length) {
5057 return codePointBeforeImpl(a, index, start);
5061 static int codePointBeforeImpl(char[] a, int index, int start) {
5063 if (isLowSurrogate(c2) && index > start) {
5142 * @param dstIndex the start index into the {@code dst}
5344 * {@code start} and {@code count} arguments specify a
5350 * @param start the index of the first {@code char} of the
5358 * if {@code start} or {@code count} is negative,
5359 * or if {@code start + count} is larger than the length of
5361 * or if {@code index} is less than {@code start} or
5362 * larger then {@code start + count},
5364 * starting with {@code index} and ending with {@code start + count - 1}
5368 * starting with {@code start} and ending with {@code index - 1}
5373 public static int offsetByCodePoints(char[] a, int start, int count,
5375 if (count > a.length-start || start < 0 || count < 0
5376 || index < start || index > start+count) {
5379 return offsetByCodePointsImpl(a, start, count, index, codePointOffset);
5382 static int offsetByCodePointsImpl(char[]a, int start, int count,
5386 int limit = start + count;
5399 for (i = codePointOffset; x > start && i < 0; i++) {
5400 if (isLowSurrogate(a[--x]) && x > start &&
5894 * A character may start a Java identifier if and only if
5904 * @return {@code true} if the character may start a Java
6006 * A character may start a Java identifier if and only if
6021 * @return {@code true} if the character may start a Java identifier;
6037 * A character may start a Java identifier if and only if
6050 * @return {@code true} if the character may start a Java identifier;
6170 * A character may start a Unicode identifier if and only if
6184 * @return {@code true} if the character may start a Unicode
6199 * A character may start a Unicode identifier if and only if
6208 * @return {@code true} if the character may start a Unicode