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

/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDoubleByteDecoder.java54 protected char lowSurrogate; field in class:DoubleByteDecoder
83 highSurrogate = lowSurrogate = 0;
101 da[dp++] = lowSurrogate;
123 highSurrogate = lowSurrogate = 0;
147 dst.put(lowSurrogate);
H A DDoubleByteEncoder.java238 protected byte[] encodeSurrogate(char highSurrogate, char lowSurrogate) { argument
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDoubleByteDecoder.java54 protected char lowSurrogate; field in class:DoubleByteDecoder
83 highSurrogate = lowSurrogate = 0;
101 da[dp++] = lowSurrogate;
123 highSurrogate = lowSurrogate = 0;
147 dst.put(lowSurrogate);
H A DDoubleByteEncoder.java238 protected byte[] encodeSurrogate(char highSurrogate, char lowSurrogate) { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLChar.java758 public static char lowSurrogate(int c) { method in class:XMLChar
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodings.java545 * @param lowSurrogate the low char of the high/low pair
548 static int toCodePoint(char highSurrogate, char lowSurrogate) { argument
551 + (lowSurrogate - 0xdc00)
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLChar.java379 public static char lowSurrogate(int c) { method in class:XMLChar
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/org/apache/xerces/util/
H A DXMLChar.java826 public static char lowSurrogate(int c) { method in class:XMLChar
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacter.java4874 * {@link #toCodePoint toCodePoint}{@code (highSurrogate(x), }{@link #lowSurrogate lowSurrogate}{@code (x)) == x}
4902 * {@link #isLowSurrogate isLowSurrogate}{@code (lowSurrogate(x))} and
4903 * {@link #toCodePoint toCodePoint}{@code (}{@link #highSurrogate highSurrogate}{@code (x), lowSurrogate(x)) == x}
4911 public static char lowSurrogate(int codePoint) { method in class:Character
4988 dst[index+1] = lowSurrogate(codePoint);

Completed in 64 milliseconds