Home | History | Annotate | Download | only in lang

Lines Matching defs:isHighSurrogate

4751     public static boolean isHighSurrogate(char ch) {
4772 * @see Character#isHighSurrogate(char)
4790 * a {@linkplain #isHighSurrogate(char) high-surrogate code unit}.
4811 * isHighSurrogate(high) && isLowSurrogate(low)
4822 return isHighSurrogate(high) && isLowSurrogate(low);
4891 if (isHighSurrogate(c1) && ++index < seq.length()) {
4960 if (isHighSurrogate(c1) && ++index < limit) {
4994 if (isHighSurrogate(c1)) {
5065 if (isHighSurrogate(c1)) {
5087 * {@link #isHighSurrogate isHighSurrogate}{@code (highSurrogate(x))} and
5236 if (isHighSurrogate(seq.charAt(i++)) && i < endIndex &&
5275 if (isHighSurrogate(a[i++]) && i < endIndex &&
5317 if (isHighSurrogate(seq.charAt(x++)) && x < length &&
5329 isHighSurrogate(seq.charAt(x-1))) {
5389 if (isHighSurrogate(a[x++]) && x < limit &&
5401 isHighSurrogate(a[x-1])) {