Searched refs:getUnicode (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharCp1140.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1140
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1141.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1141
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1142.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1142
44 return (byteIndex == 0x5A) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1143.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1143
44 return (byteIndex == 0x5A) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1144.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1144
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1145.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1145
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1146.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1146
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1147.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1147
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1148.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1148
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp1149.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp1149
43 return (byteIndex == (byte)0x9F) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharCp858.java40 protected char getUnicode(int byteIndex) { method in class:ByteToCharCp858
43 return (byteIndex == (byte)0xD5) ? '\u20AC' : super.getUnicode(byteIndex);
H A DByteToCharSJIS.java50 return bcJIS0201.getUnicode(b);
53 protected char getUnicode(int c1, int c2) { method in class:ByteToCharSJIS
59 return super.getUnicode(b1, b2);
H A DByteToCharPCK.java57 return bcJIS0201.getUnicode(b);
60 protected char getUnicode(int c1, int c2) { method in class:ByteToCharPCK
62 if ((outChar = super.getUnicode(c1, c2)) != '\uFFFD') {
71 outChar = bcJIS0208.getUnicode(b1, b2);
H A DByteToCharEUC_JP_Solaris.java84 return bcJIS0201.getUnicode(b);
87 protected char getUnicode(int byte1, int byte2) { method in class:ByteToCharEUC_JP_Solaris
89 return bcJIS0201.getUnicode(byte2 - 256);
92 // into ByteToCharDoubleByte.getUnicode()
97 char result = super.getUnicode(byte1, byte2);
108 return j0212Decoder.getUnicode(byte1, byte2);
174 outputChar = bcJIS0212.getUnicode(byte1-0x80, byte2-0x80);
186 outputChar = getUnicode(byte1, byte2);
H A DByteToCharSingleByte.java96 outputChar = getUnicode(byteIndex);
122 protected char getUnicode(int byteIndex) { method in class:ByteToCharSingleByte
H A DByteToCharEUC_JP_LINUX.java74 return bcJIS0201.getUnicode(b);
77 protected char getUnicode(int byte1, int byte2) { method in class:ByteToCharEUC_JP_LINUX
79 return bcJIS0201.getUnicode(byte2 - 256);
82 // into ByteToCharDoubleByte.getUnicode()
145 outputChar = getUnicode(byte1, byte2);
H A DByteToCharEUC_JP.java72 return bcJIS0201.getUnicode(b);
75 protected char getUnicode(int byte1, int byte2) { method in class:ByteToCharEUC_JP
77 return bcJIS0201.getUnicode(byte2 - 256);
80 // into ByteToCharDoubleByte.getUnicode()
91 return bcJIS0212.getUnicode(byte1, byte2);
169 outputChar = getUnicode(byte1, byte2);
H A DByteToCharDoubleByte.java135 outputChar = getUnicode(byte1, byte2);
179 protected char getUnicode(int byte1, int byte2) { method in class:ByteToCharDoubleByte
181 // into ByteToCharEUC_JP.getUnicode()
H A DByteToCharISO2022.java114 private char getUnicode(byte byte1, byte byte2, byte shiftFlag) method in class:ByteToCharISO2022
224 output[charOff] = getUnicode(remainByte[2],
231 output[charOff] = getUnicode(remainByte[2],
262 output[charOff] = getUnicode(firstByte, remainByte[0],
H A DByteToCharISO2022CN.java110 private char getUnicode(byte byte1, byte byte2, byte shiftFlag) method in class:ByteToCharISO2022CN
219 output[charOff] = getUnicode(remainByte[2],
226 output[charOff] = getUnicode(remainByte[2],
257 output[charOff] = getUnicode(firstByte, remainByte[0],
H A DByteToCharGB18030.java215 output[charOff++] = super.getUnicode(byte1, byte2);
H A DByteToCharISO2022JP.java267 outputChar = getUnicode(byte1, byte2);

Completed in 48 milliseconds