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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java37 static final boolean isLowSurrogate(int ch) { method in class:REUtil
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLChar.java776 public static boolean isLowSurrogate(int c) { method in class:XMLChar
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLChar.java397 public static boolean isLowSurrogate(int c) { method in class:XMLChar
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/org/apache/xerces/util/
H A DXMLChar.java844 public static boolean isLowSurrogate(int c) { method in class:XMLChar
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java4525 * @see Character#isLowSurrogate(char)
4553 public static boolean isLowSurrogate(char ch) { method in class:Character
4567 * a {@linkplain #isLowSurrogate(char) low-surrogate code unit} or
4589 * isHighSurrogate(high) && isLowSurrogate(low)
4600 return isHighSurrogate(high) && isLowSurrogate(low);
4672 if (isLowSurrogate(c2)) {
4743 if (isLowSurrogate(c2)) {
4774 if (isLowSurrogate(c2)) {
4847 if (isLowSurrogate(c2)) {
4902 * {@link #isLowSurrogate isLowSurrogat
[all...]

Completed in 53 milliseconds