Searched refs:isHighSurrogate (Results 1 – 7 of 7) sorted by relevance
188 if (!Character.isHighSurrogate(c1) || i >= length) { in codePoints()216 if (Character.isHighSurrogate(c1) && cur < length) { in codePoints()
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()
57 public static boolean isHighSurrogate(char ch) { throw new RuntimeException("Stub!"); } in isHighSurrogate() method in Character
79 public static boolean isHighSurrogate(char ch) { in isHighSurrogate() method in Character