Searched defs:isHighSurrogate (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
H A DCharacter.java4752 public static boolean isHighSurrogate(char ch) { method in class:Character
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 isHighSurrogat
[all...]

Completed in 14 milliseconds