Searched refs:lowSurrogate (Results 1 - 17 of 17) 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
H A DEUC_TW.java162 c2[1] = Character.lowSurrogate(0x20000 + c);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUnicodeEncoder.java96 put(Character.lowSurrogate(d), dst);
H A DSurrogate.java98 * Use of {@link Character#lowSurrogate} is generally preferred.
102 return Character.lowSurrogate(uc);
307 dst.put(Character.lowSurrogate(uc));
352 da[dp + 1] = Character.lowSurrogate(uc);
H A DUTF_32Coder.java101 dst.put(Character.lowSurrogate(cp));
H A DUTF_8.java271 da[dp++] = Character.lowSurrogate(uc);
341 dst.put(Character.lowSurrogate(uc));
455 da[dp++] = Character.lowSurrogate(uc);
/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)
H A DToHTMLStream.java1209 int lowSurrogate = ((int) ch) & 0x03FF;
1212 yyyyyy = yyyyyy | ((lowSurrogate & 0x03C0) >> 6);
1215 int xxxxxx = (lowSurrogate & 0x003F);
/openjdk7/jdk/test/java/nio/charset/coders/
H A DBashStreams.java92 push(Character.lowSurrogate(c));
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1556 final char lo = Character.lowSurrogate(ch);
1652 char lo = Character.lowSurrogate(ch);
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);
/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/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLChar.java758 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

Completed in 330 milliseconds