Searched refs:cs (Results 76 - 100 of 681) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM935_OLD.java35 import sun.nio.cs.HistoricallyNamedCharset;
36 import sun.nio.cs.ext.*;
50 public boolean contains(Charset cs) { argument
51 return (cs instanceof IBM935);
65 * converters co-exist with the sun.nio.cs.{ext} charset coders
98 public Decoder(Charset cs) { argument
99 super(cs);
1287 public Encoder(Charset cs) { argument
1288 super(cs);
1297 protected Encoder(Charset cs, shor argument
[all...]
H A DIBM937_OLD.java35 import sun.nio.cs.HistoricallyNamedCharset;
36 import sun.nio.cs.ext.*;
50 public boolean contains(Charset cs) { argument
51 return (cs instanceof IBM937);
65 * converters co-exist with the sun.nio.cs.{ext} charset coders
98 public Decoder(Charset cs) { argument
99 super(cs);
2398 public Encoder(Charset cs) { argument
2399 super(cs);
2408 protected Encoder(Charset cs, shor argument
[all...]
H A DIBM939_OLD.java34 import sun.nio.cs.HistoricallyNamedCharset;
35 import sun.nio.cs.ext.*;
51 public boolean contains(Charset cs) { argument
52 return (cs instanceof IBM939);
66 * converters co-exist with the sun.nio.cs.{ext} charset coders
99 public Decoder(Charset cs) { argument
100 super(cs);
1490 public Encoder(Charset cs) { argument
1491 super(cs);
1500 protected Encoder(Charset cs, shor argument
[all...]
H A DGBK_OLD.java43 public boolean contains(Charset cs) { argument
44 return ((cs.name().equals("US-ASCII"))
45 || (cs instanceof GBK_OLD));
59 * converters co-exist with the sun.nio.cs.{ext} charset coders
3164 public Decoder(Charset cs) { argument
3165 super(cs,
6802 public Encoder(Charset cs) { argument
6803 super(cs,
H A DJohab_OLD.java29 //package sun.nio.cs.ext;
43 public boolean contains(Charset cs) { argument
44 return ((cs.name().equals("US-ASCII"))
45 || (cs instanceof Johab_OLD));
59 * converters co-exist with the sun.nio.cs.{ext} charset coders
3281 public Decoder(Charset cs) { argument
3282 super(cs,
8016 public Encoder(Charset cs) { argument
8017 super(cs,
H A DMS949_OLD.java33 import sun.nio.cs.HistoricallyNamedCharset;
34 import sun.nio.cs.HistoricallyNamedCharset;
48 public boolean contains(Charset cs) { argument
49 return ((cs.name().equals("US-ASCII"))
50 || (cs instanceof MS949_OLD));
64 * converters co-exist with the sun.nio.cs.{ext} charset coders
3149 public Decoder(Charset cs) { argument
3150 super(cs,
7915 public Encoder(Charset cs) { argument
7916 super(cs,
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DSJIS.java29 package sun.nio.cs.ext;
37 import sun.nio.cs.HistoricallyNamedCharset;
52 public boolean contains(Charset cs) { argument
53 return ((cs.name().equals("US-ASCII"))
54 || (cs instanceof JIS_X_0201)
55 || (cs instanceof SJIS)
56 || (cs instanceof JIS_X_0208));
79 protected Decoder(Charset cs) { argument
80 super(cs);
81 jis0201 = new JIS_X_0201.Decoder(cs);
122 Encoder(Charset cs) argument
[all...]
H A DJIS_X_0208_Decoder.java29 package sun.nio.cs.ext;
36 public JIS_X_0208_Decoder(Charset cs) { argument
37 super(cs,
1005 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DJIS_X_0208_Solaris_Encoder.java29 package sun.nio.cs.ext;
38 public JIS_X_0208_Solaris_Encoder(Charset cs) { argument
39 super(cs,
2716 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DJIS_X_0212_Decoder.java29 package sun.nio.cs.ext;
37 public JIS_X_0212_Decoder(Charset cs) { argument
38 super(cs,
47 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DJIS_X_0212_Encoder.java29 package sun.nio.cs.ext;
49 public JIS_X_0212_Encoder(Charset cs) { argument
50 super(cs,
63 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DJIS_X_0212_MS5022X_Encoder.java26 package sun.nio.cs.ext;
34 public JIS_X_0212_MS5022X_Encoder(Charset cs) { argument
35 super(cs);
H A DJIS_X_0212_Solaris_Decoder.java29 package sun.nio.cs.ext;
36 public JIS_X_0212_Solaris_Decoder(Charset cs) { argument
37 super(cs,
46 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DJIS_X_0212_Solaris_Encoder.java29 package sun.nio.cs.ext;
39 public JIS_X_0212_Solaris_Encoder(Charset cs) { argument
40 super(cs,
53 * converters co-exist with the sun.nio.cs.{ext} charset coders
H A DPCK.java29 package sun.nio.cs.ext;
37 import sun.nio.cs.HistoricallyNamedCharset;
52 public boolean contains(Charset cs) { argument
53 return ((cs.name().equals("US-ASCII"))
54 || (cs instanceof JIS_X_0201)
55 || (cs instanceof PCK));
78 private Decoder(Charset cs) { argument
79 super(cs);
80 jis0208 = new JIS_X_0208_Solaris_Decoder(cs);
110 private Encoder(Charset cs) { argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java380 ChunkStream cs = new ChunkStream(PNGImageReader.IHDR_TYPE, stream);
381 cs.writeInt(metadata.IHDR_width);
382 cs.writeInt(metadata.IHDR_height);
383 cs.writeByte(metadata.IHDR_bitDepth);
384 cs.writeByte(metadata.IHDR_colorType);
389 cs.writeByte(metadata.IHDR_compressionMethod);
394 cs.writeByte(metadata.IHDR_filterMethod);
400 cs.writeByte(metadata.IHDR_interlaceMethod);
401 cs.finish();
406 ChunkStream cs
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DINVOKESPECIAL.java83 Class[] cs = new Class[4 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
86 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
88 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+3] = ExceptionConstants.UNSATISFIED_LINK_ERROR;
89 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+2] = ExceptionConstants.ABSTRACT_METHOD_ERROR;
90 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+1] = ExceptionConstants.INCOMPATIBLE_CLASS_CHANGE_ERROR;
91 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] = ExceptionConstants.NULL_POINTER_EXCEPTION;
93 return cs;
H A DINVOKEVIRTUAL.java82 Class[] cs = new Class[4 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
85 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
87 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+3] = ExceptionConstants.UNSATISFIED_LINK_ERROR;
88 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+2] = ExceptionConstants.ABSTRACT_METHOD_ERROR;
89 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+1] = ExceptionConstants.INCOMPATIBLE_CLASS_CHANGE_ERROR;
90 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] = ExceptionConstants.NULL_POINTER_EXCEPTION;
92 return cs;
H A DGETSTATIC.java86 Class[] cs = new Class[1 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
89 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
90 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] =
93 return cs;
H A DPUTSTATIC.java87 Class[] cs = new Class[1 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
90 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
91 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] =
94 return cs;
/openjdk7/jdk/make/sun/nio/cs/
H A DFILES_java.gmk304 sun/nio/cs/ext/IBM037.java \
305 sun/nio/cs/ext/IBM1006.java \
306 sun/nio/cs/ext/IBM1025.java \
307 sun/nio/cs/ext/IBM1026.java \
308 sun/nio/cs/ext/IBM1046.java \
309 sun/nio/cs/ext/IBM1047.java \
310 sun/nio/cs/ext/IBM1097.java \
311 sun/nio/cs/ext/IBM1098.java \
312 sun/nio/cs/ext/IBM1112.java \
313 sun/nio/cs/ex
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharBig5_HKSCS.java28 import sun.nio.cs.ext.Big5_HKSCS;
29 import sun.nio.cs.ext.HKSCS;
30 import static sun.nio.cs.CharsetMapping.*;
H A DByteToCharMS950_HKSCS.java28 import sun.nio.cs.ext.HKSCS;
29 import sun.nio.cs.ext.MS950_HKSCS;
30 import static sun.nio.cs.CharsetMapping.*;
/openjdk7/jdk/test/sun/nio/cs/
H A DSJISCanEncode.java26 @summary validates canEncode(char c) method for sun.nio.cs.Shift_JIS
34 private Charset cs; field in class:SJISCanEncode
50 test.cs = Charset.forName("SJIS");
51 test.encoder = test.cs.newEncoder();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DEncoderFactory.java46 Charset cs = Charset.forName(System.getProperty("file.encoding"));
47 CharsetEncoder encoder = cs.newEncoder();
49 if( cs.getClass().getName().equals("sun.nio.cs.MS1252") ) {
62 return c.newInstance(new Object[]{cs});

Completed in 1907 milliseconds

1234567891011>>