Home | History | Annotate | Download | only in lang

Lines Matching defs:isHighSurrogate

4752     public static boolean isHighSurrogate(char ch) {
4773 * @see Character#isHighSurrogate(char)
4791 * a {@linkplain #isHighSurrogate(char) high-surrogate code unit}.
4812 * isHighSurrogate(high) && isLowSurrogate(low)
4823 return isHighSurrogate(high) && isLowSurrogate(low);
4892 if (isHighSurrogate(c1) && ++index < seq.length()) {
4961 if (isHighSurrogate(c1) && ++index < limit) {
4995 if (isHighSurrogate(c1)) {
5066 if (isHighSurrogate(c1)) {
5088 * {@link #isHighSurrogate isHighSurrogate}{@code (highSurrogate(x))} and
5237 if (isHighSurrogate(seq.charAt(i++)) && i < endIndex &&
5276 if (isHighSurrogate(a[i++]) && i < endIndex &&
5318 if (isHighSurrogate(seq.charAt(x++)) && x < length &&
5330 isHighSurrogate(seq.charAt(x-1))) {
5390 if (isHighSurrogate(a[x++]) && x < limit &&
5402 isHighSurrogate(a[x-1])) {