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

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

Completed in 40 milliseconds