Searched refs:highSurrogate (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDoubleByteDecoder.java53 protected char highSurrogate; field in class:DoubleByteDecoder
83 highSurrogate = lowSurrogate = 0;
94 outputSize = (highSurrogate > 0) ? 2: 1;
100 da[dp++] = highSurrogate;
123 highSurrogate = lowSurrogate = 0;
139 outputSize = (highSurrogate > 0) ? 2: 1;
146 dst.put(highSurrogate);
H A DDoubleByteEncoder.java238 protected byte[] encodeSurrogate(char highSurrogate, char lowSurrogate) { argument
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDoubleByteDecoder.java53 protected char highSurrogate; field in class:DoubleByteDecoder
83 highSurrogate = lowSurrogate = 0;
94 outputSize = (highSurrogate > 0) ? 2: 1;
100 da[dp++] = highSurrogate;
123 highSurrogate = lowSurrogate = 0;
139 outputSize = (highSurrogate > 0) ? 2: 1;
146 dst.put(highSurrogate);
H A DDoubleByteEncoder.java238 protected byte[] encodeSurrogate(char highSurrogate, char lowSurrogate) { argument
H A DEUC_TW.java161 c2[0] = Character.highSurrogate(0x20000 + c);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUnicodeEncoder.java95 put(Character.highSurrogate(d), dst);
H A DSurrogate.java89 * Use of {@link Character#highSurrogate} is generally preferred.
93 return Character.highSurrogate(uc);
306 dst.put(Character.highSurrogate(uc));
351 da[dp] = Character.highSurrogate(uc);
H A DUTF_32Coder.java100 dst.put(Character.highSurrogate(cp));
H A DUTF_8.java270 da[dp++] = Character.highSurrogate(uc);
340 dst.put(Character.highSurrogate(uc));
454 da[dp++] = Character.highSurrogate(uc);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DEncodings.java544 * @param highSurrogate the high char of the high/low pair
548 static int toCodePoint(char highSurrogate, char lowSurrogate) { argument
550 ((highSurrogate - 0xd800) << 10)
H A DToHTMLStream.java1190 int highSurrogate = ((int) ch) & 0x03FF;
1196 int wwww = ((highSurrogate & 0x03C0) >> 6);
1200 int zzzz = (highSurrogate & 0x003C) >> 2;
1203 int yyyyyy = ((highSurrogate & 0x0003) << 4) & 0x30;
/openjdk7/jdk/test/java/nio/charset/coders/
H A DBashStreams.java93 return Character.highSurrogate(c);
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1555 final char hi = Character.highSurrogate(ch);
1651 char hi = Character.highSurrogate(ch);
H A DCharacter.java4873 * {@link #isHighSurrogate isHighSurrogate}{@code (highSurrogate(x))} and
4874 * {@link #toCodePoint toCodePoint}{@code (highSurrogate(x), }{@link #lowSurrogate lowSurrogate}{@code (x)) == x}
4882 public static char highSurrogate(int codePoint) { method in class:Character
4903 * {@link #toCodePoint toCodePoint}{@code (}{@link #highSurrogate highSurrogate}{@code (x), lowSurrogate(x)) == x}
4989 dst[index] = highSurrogate(codePoint);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLChar.java370 public static char highSurrogate(int c) { method in class:XMLChar
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLChar.java749 public static char highSurrogate(int c) { method in class:XMLChar
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/org/apache/xerces/util/
H A DXMLChar.java817 public static char highSurrogate(int c) { method in class:XMLChar

Completed in 335 milliseconds