Searched refs:isHighSurrogate (Results 1 – 8 of 8) sorted by relevance
188 if (!Character.isHighSurrogate(c1) || i >= length) { in codePoints()216 if (Character.isHighSurrogate(c1) && cur < length) { in codePoints()
4762 public static boolean isHighSurrogate(char ch) { in isHighSurrogate() method in Character4833 return isHighSurrogate(high) && isLowSurrogate(low); in isSurrogatePair()4902 if (isHighSurrogate(c1) && ++index < seq.length()) { in codePointAt()4971 if (isHighSurrogate(c1) && ++index < limit) { in codePointAtImpl()5005 if (isHighSurrogate(c1)) { in codePointBefore()5076 if (isHighSurrogate(c1)) { in codePointBeforeImpl()5247 if (isHighSurrogate(seq.charAt(i++)) && i < endIndex && in codePointCount()5286 if (isHighSurrogate(a[i++]) && i < endIndex && in codePointCountImpl()5328 if (isHighSurrogate(seq.charAt(x++)) && x < length && in offsetByCodePoints()5340 isHighSurrogate(seq.charAt(x-1))) { in offsetByCodePoints()[all …]
1438 if (Character.isHighSurrogate(c1)) { in reverseAllValidSurrogatePairs()
57 if (ch == LATIN_CAPITAL_I_WITH_DOT || Character.isHighSurrogate(ch)) { in toLowerCase()159 if (Character.isHighSurrogate(ch)) { in toUpperCase()
169 } else if (Character.isHighSurrogate(c) && i < s.length() - 1) { in writeEscaped()589 } else if (Character.isHighSurrogate(ch) && i < data.length() - 1) { in cdsect()
54 assertFalse(Character.isHighSurrogate((char) ('\uD800' - 1))); in test_isHighSurrogateC()56 assertTrue(Character.isHighSurrogate((char) c)); in test_isHighSurrogateC()58 assertFalse(Character.isHighSurrogate((char) ('\uDBFF' + 1))); in test_isHighSurrogateC()59 assertFalse(Character.isHighSurrogate('\uFFFF')); in test_isHighSurrogateC()
79 public static boolean isHighSurrogate(char ch) { in isHighSurrogate() method in Character
57 public static boolean isHighSurrogate(char ch) { throw new RuntimeException("Stub!"); } in isHighSurrogate() method in Character