Searched defs:decodeDouble (Results 1 - 23 of 23) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharBig5_HKSCS.java46 protected char decodeDouble(int byte1, int byte2) { method in class:ByteToCharBig5_HKSCS
47 char c = dec.decodeDouble(byte1, byte2);
H A DByteToCharMS950_HKSCS.java45 protected char decodeDouble(int byte1, int byte2) { method in class:ByteToCharMS950_HKSCS
46 char c = dec.decodeDouble(byte1, byte2);
H A DByteToCharDBCS_ASCII.java47 char decodeDouble(int b1, int b2) { method in class:ByteToCharDBCS_ASCII
48 return dec.decodeDouble(b1, b2);
102 outputChar = decodeDouble(byte1, input[byteOff+inputSize] & 0xff);
H A DByteToCharDBCS_EBCDIC.java56 char decodeDouble(int b1, int b2) { method in class:ByteToCharDBCS_EBCDIC
57 return dec.decodeDouble(b1, b2);
163 outputChar = decodeDouble(byte1, byte2);
H A DByteToCharEUC2.java51 char decodeDouble(int b1, int b2) { method in class:ByteToCharEUC2
52 return dec.decodeDouble(b1, b2);
118 outputChar = decodeDouble(firstByte, byte1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DRegisterDecoder.java31 private static SPARCFloatRegister decodeDouble(int num) { method in class:RegisterDecoder
68 result = decodeDouble(regNum);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCSDecoderMapping.java68 protected char decodeDouble(int byte1, int byte2) { method in class:DBCSDecoderMapping
H A DDoubleByteDecoder.java90 c = decodeDouble(b1, b2);
134 c = decodeDouble(b1, b2);
174 protected char decodeDouble(int byte1, int byte2) { method in class:DoubleByteDecoder
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0212_MS5022X_Decoder.java42 protected char decodeDouble(int byte1, int byte2) { method in class:JIS_X_0212_MS5022X_Decoder
49 return (super.decodeDouble(byte1, byte2));
H A DMS932_0213.java59 protected char decodeDouble(int b1, int b2) { method in class:MS932_0213.Decoder
60 char c = decMS932.decodeDouble(b1, b2);
62 return super.decodeDouble(b1, b2);
H A DDoubleByteDecoder.java90 c = decodeDouble(b1, b2);
134 c = decodeDouble(b1, b2);
174 protected char decodeDouble(int byte1, int byte2) { method in class:DoubleByteDecoder
H A DPCK.java83 protected char decodeDouble(int c1, int c2) { method in class:PCK.Decoder
86 if ((outChar = super.decodeDouble(c1, c2)) != '\uFFFD') {
95 char outChar2 = jis0208.decodeDouble(b1, b2);
H A DEUC_JP_LINUX.java88 protected char decodeDouble(int byte1, int byte2) { method in class:EUC_JP_LINUX.Decoder
140 outputChar = decodeDouble(b1, b2);
183 outputChar = decodeDouble(b1, b2);
H A DEUC_JP_Open.java95 return decodeMappingJ0212.decodeDouble(byte1, byte2);
99 protected char decodeDouble(int byte1, int byte2) { method in class:EUC_JP_Open.Decoder
110 char result = super.decodeDouble(byte1, byte2);
H A DSJIS.java92 protected char decodeDouble(int c1, int c2) { method in class:SJIS.Decoder
98 return super.decodeDouble(b1, b2);
H A DDoubleByte.java79 * public char decodeDouble(int b1, int b2) {
226 public char decodeDouble(int b1, int b2) { method in class:DoubleByte.Decoder
H A DEUC_JP.java95 return decoderJ0212.decodeDouble(byte1, byte2);
98 protected char decodeDouble(int byte1, int byte2) { method in class:EUC_JP.Decoder
154 outputChar = decodeDouble(b1, b2);
202 outputChar = decodeDouble(b1, b2);
H A DHKSCS.java66 return big5Dec.decodeDouble(b1, b2);
69 public char decodeDouble(int b1, int b2) { method in class:HKSCS.Decoder
104 c = decodeDouble(b1, b2); //bmp
150 c = decodeDouble(b1, b2); //bmp
H A DSJIS_0213.java111 c = decodeDouble(b1, b2);
154 c = decodeDouble(b1, b2);
193 protected char decodeDouble(int b1, int b2) { method in class:SJIS_0213.Decoder
194 return mapping.decodeDouble(b1, b2);
H A DGB18030.java12338 protected char decodeDouble(int byte1, int byte2) { method in class:GB18030.Decoder
12421 da[dp++] = decodeDouble(byte1, byte2);
12524 dst.put(decodeDouble(byte1, byte2));
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11GB2312.java108 protected char decodeDouble(int b1, int b2) { method in class:X11GB2312.Decoder
109 return dec.decodeDouble(b1, b2);
131 char c = decodeDouble(b1, b2);
H A DX11KSC5601.java107 protected char decodeDouble(int b1, int b2) { method in class:X11KSC5601.Decoder
108 return dec.decodeDouble(b1, b2);
131 char c = decodeDouble(b1, b2);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java66 public char decodeDouble(int b1, int b2) { method in class:CharsetMapping

Completed in 268 milliseconds