Searched refs:Decoder (Results 76 - 100 of 140) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTCharset.java59 throw new Error("Decoder is not supported by this Charset");
60 return new Decoder(javaCs.newDecoder());
104 public class Decoder extends CharsetDecoder { class in class:AWTCharset
108 protected Decoder () { method in class:AWTCharset.Decoder
112 protected Decoder (CharsetDecoder dec) { method in class:AWTCharset.Decoder
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DPCK.java59 return new Decoder(this);
73 private static class Decoder extends SJIS.Decoder { class in class:PCK
78 private Decoder(Charset cs) { method in class:PCK.Decoder
H A DIBM964.java58 return new Decoder(this);
75 return Decoder.byteToCharTable;
79 return Decoder.mappingTableG1;
83 return Decoder.mappingTableG2a2;
87 return Decoder.mappingTableG2ac;
91 return Decoder.mappingTableG2ad;
113 protected static class Decoder extends CharsetDecoder { class in class:IBM964
119 public Decoder(Charset cs) { method in class:IBM964.Decoder
H A DIBM33722.java58 return new Decoder(this);
75 return Decoder.byteToCharTable;
79 return Decoder.mappingTableG1;
83 return Decoder.mappingTableG2;
87 return Decoder.mappingTableG3;
106 protected static class Decoder extends CharsetDecoder { class in class:IBM33722
118 public Decoder(Charset cs) { method in class:IBM33722.Decoder
H A DISO2022_CN_GB.java58 return new ISO2022_CN.Decoder(this);
H A DISO2022_CN.java72 return new Decoder(this);
83 static class Decoder extends CharsetDecoder { class in class:ISO2022_CN
89 private final DoubleByte.Decoder gb2312Decoder;
90 private final EUC_TW.Decoder cnsDecoder;
92 Decoder(Charset cs) { method in class:ISO2022_CN.Decoder
96 gb2312Decoder = (DoubleByte.Decoder)gb2312.newDecoder();
97 cnsDecoder = (EUC_TW.Decoder)cns.newDecoder();
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11JIS0201.java43 return new JIS_X_0201.Decoder(this);
H A DX11GB2312.java42 return new Decoder(this);
101 private class Decoder extends CharsetDecoder { class in class:X11GB2312
102 private DoubleByte.Decoder dec = (DoubleByte.Decoder)new EUC_CN().newDecoder();
104 public Decoder(Charset cs) { method in class:X11GB2312.Decoder
H A DX11KSC5601.java42 return new Decoder(this);
100 private class Decoder extends CharsetDecoder { class in class:X11KSC5601
101 private DoubleByte.Decoder dec = (DoubleByte.Decoder)new EUC_KR().newDecoder();
103 public Decoder(Charset cs) { method in class:X11KSC5601.Decoder
H A DX11CNS11643.java56 return new Decoder(this, plane);
130 private class Decoder extends EUC_TW.Decoder { class in class:X11CNS11643
133 protected Decoder(Charset cs, int plane) { method in class:X11CNS11643.Decoder
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DX11GB2312_OLD.java39 return new Decoder(this);
92 private class Decoder extends EUC_CN_OLD.Decoder { class in class:X11GB2312_OLD
93 public Decoder(Charset cs) { method in class:X11GB2312_OLD.Decoder
H A DX11GBK_OLD.java40 return new GBK_OLD.Decoder(this);
H A DX11KSC5601_OLD.java39 return new Decoder(this);
91 private class Decoder extends EUC_KR_OLD.Decoder { class in class:X11KSC5601_OLD
92 public Decoder(Charset cs) { method in class:X11KSC5601_OLD.Decoder
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.hpp30 class Decoder;
35 friend class Decoder;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DFI_StAX_SAX_Or_XML_SAX_SAXEvent.java30 import com.sun.xml.internal.fastinfoset.Decoder;
51 boolean isFastInfosetDocument = Decoder.isFastInfosetDocument(document);
H A DFI_DOM_Or_XML_DOM_SAX_SAXEvent.java30 import com.sun.xml.internal.fastinfoset.Decoder;
51 boolean isFastInfosetDocument = Decoder.isFastInfosetDocument(document);
H A DFI_SAX_Or_XML_SAX_SAXEvent.java30 import com.sun.xml.internal.fastinfoset.Decoder;
52 boolean isFastInfosetDocument = Decoder.isFastInfosetDocument(document);
H A DFI_SAX_Or_XML_SAX_DOM_SAX_SAXEvent.java30 import com.sun.xml.internal.fastinfoset.Decoder;
58 boolean isFastInfosetDocument = Decoder.isFastInfosetDocument(document);
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharDBCS_ASCII.java35 private DoubleByte.Decoder dec;
37 public ByteToCharDBCS_ASCII(DoubleByte.Decoder dec) {
H A DByteToCharEUC2.java39 private DoubleByte.Decoder dec;
41 public ByteToCharEUC2(DoubleByte.Decoder dec) {
H A DByteToCharDBCS_EBCDIC.java43 private DoubleByte.Decoder dec;
45 public ByteToCharDBCS_EBCDIC(DoubleByte.Decoder dec) {
H A DByteToCharEUC_TW.java46 private EUC_TW.Decoder dec = (EUC_TW.Decoder)(new EUC_TW().newDecoder());
/openjdk7/jdk/test/java/net/URLEncoder/
H A DDecoder.java32 public class Decoder { class
/openjdk7/jdk/test/sun/nio/cs/
H A DX11CNS11643.java54 return new Decoder(this, plane);
118 private class Decoder extends EUC_TW_OLD.Decoder { class in class:X11CNS11643
120 protected Decoder(Charset cs, int plane) { method in class:X11CNS11643.Decoder
/openjdk7/jdk/make/tools/CharsetMapping/
H A DSingleByte-X.java.template51 return new SingleByte.Decoder(this, b2c);

Completed in 145 milliseconds

123456