Searched defs:cs (Results 126 - 150 of 228) sorted by relevance

12345678910

/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.inline.hpp34 CodeSection* cs = code_section(); local
35 guarantee(cs->start() == _code_begin, "must not shift code buffer");
36 cs->set_end(_code_pos);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSingleByteEncoder.java38 import sun.nio.cs.Surrogate;
53 protected SingleByteEncoder(Charset cs, argument
57 super(cs, 1.0f, 1.0f);
/openjdk7/jdk/test/sun/security/provider/PolicyFile/
H A DComparator.java60 private static final CodeSource cs = field in class:Comparator
181 ProtectionDomain pd = new ProtectionDomain(cs, null, null, badP);
205 ProtectionDomain pd = new ProtectionDomain(cs, null, null, p1);
212 pd = new ProtectionDomain(cs, null, null, p1);
219 pd = new ProtectionDomain(cs, null, null, p2);
226 pd = new ProtectionDomain(cs, null, null, p1);
233 pd = new ProtectionDomain(cs, null, null, p2);
247 ProtectionDomain pd = new ProtectionDomain(cs, null, null, p1);
254 pd = new ProtectionDomain(cs, null, null, p1);
261 pd = new ProtectionDomain(cs, nul
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipCoder.java123 private Charset cs; field in class:ZipCoder
127 private ZipCoder(Charset cs) { argument
128 this.cs = cs;
129 this.isutf8 = cs.name().equals("UTF-8");
151 dec = cs.newDecoder()
162 enc = cs.newEncoder()
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DListenerScaleTest.java132 JMXConnectorServer cs =
134 cs.start();
135 JMXServiceURL addr = cs.getAddress();
138 test(mbs, cs, cc);
141 cs.stop();
145 private static void test(MBeanServer mbs, JMXConnectorServer cs, argument
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DX509KeySelector.java206 private KeySelectorResult keyStoreSelect(CertSelector cs) argument
212 if (cert != null && cs.match(cert)) {
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DColConvCCMTest.java73 int cs, BufferedImage gldImage,
76 BufferedImage src = ImageFactory.createCCMImage(cs, dataType);
93 int bBits, int cs, BufferedImage gldImage,
96 BufferedImage src = ImageFactory.createCCMImage(cs, dataType);
72 testImage(int dataType, int rBits, int gBits, int bBits, int cs, BufferedImage gldImage, double accuracy) argument
91 testSubImage(int x0, int y0, int dx, int dy, int dataType, int rBits, int gBits, int bBits, int cs, BufferedImage gldImage, double accuracy) argument
H A DColConvDCMTest.java75 int cs, BufferedImage gldImage,
78 BufferedImage src = ImageFactory.createDCMImage(type, cs);
96 int cs, BufferedImage gldImage,
99 BufferedImage src = ImageFactory.createDCMImage(type, cs);
74 testImage(int type, int rBits, int gBits, int bBits, int cs, BufferedImage gldImage, double accuracy) argument
94 testSubImage(int x0, int y0, int dx, int dy, int type, int rBits, int gBits, int bBits, int cs, BufferedImage gldImage, double accuracy) argument
/openjdk7/jdk/test/sun/nio/cs/
H A DISO8859x.java48 private static void testCharset(Charset cs) throws Throwable { argument
49 String csn = cs.name();
52 check(cs.canEncode());
56 CharsetEncoder encoder = cs.newEncoder();
57 CharsetDecoder decoder = cs.newDecoder();
74 System.out.printf("cs=%s c=%02x%n", cs, c);
84 Charset cs = e.getValue();
86 try { testCharset(cs); }
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_EBCDIC_Decoder.java63 protected DBCS_IBM_EBCDIC_Decoder(Charset cs) { argument
64 super(cs, 0.5f, 1.0f);
H A DDBCS_IBM_EBCDIC_Encoder.java35 import sun.nio.cs.Surrogate;
68 protected DBCS_IBM_EBCDIC_Encoder(Charset cs) { argument
69 super(cs, 4.0f, 5.0f, new byte[] {(byte)0x6f});
H A DDoubleByteEncoder.java29 //package sun.nio.cs.ext;
36 import sun.nio.cs.Surrogate;
47 protected DoubleByteEncoder(Charset cs, argument
50 super(cs, 2.0f, 2.0f);
55 protected DoubleByteEncoder(Charset cs, argument
59 super(cs, avg, max);
64 protected DoubleByteEncoder(Charset cs, argument
67 super(cs, 2.0f, 2.0f, repl);
73 protected DoubleByteEncoder(Charset cs, argument
77 super(cs, av
[all...]
H A DEUC_CN_OLD.java29 import sun.nio.cs.HistoricallyNamedCharset;
44 public boolean contains(Charset cs) { argument
45 return ((cs instanceof EUC_CN_OLD)
46 || (cs.name().equals("US-ASCII")));
1076 public Decoder(Charset cs) { argument
1077 super(cs,
4266 public Encoder(Charset cs) { argument
4267 super(cs,
H A DEUC_KR_OLD.java30 //package sun.nio.cs.ext;
36 import sun.nio.cs.HistoricallyNamedCharset;
50 public boolean contains(Charset cs) { argument
51 return ((cs instanceof EUC_KR_OLD)
52 || (cs.name().equals("US-ASCII")));
66 * converters co-exist with the sun.nio.cs.{ext} charset coders
1190 public Decoder(Charset cs) { argument
1191 super(cs,
5924 public Encoder(Charset cs) { argument
5925 super(cs,
[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 DIBM1381_OLD.java35 import sun.nio.cs.HistoricallyNamedCharset;
36 import sun.nio.cs.ext.*;
51 public boolean contains(Charset cs) { argument
52 return (cs instanceof IBM1381);
66 * converters co-exist with the sun.nio.cs.{ext} charset coders
101 public Decoder(Charset cs) { argument
102 super(cs);
1411 public Encoder(Charset cs) { argument
1412 super(cs);
1421 protected Encoder(Charset cs, shor argument
[all...]
H A DIBM942_OLD.java34 import sun.nio.cs.HistoricallyNamedCharset;
35 import sun.nio.cs.ext.*;
49 public boolean contains(Charset cs) { argument
50 return (cs instanceof IBM942);
94 public Decoder(Charset cs) { argument
95 super(cs);
100 protected Decoder(Charset cs, String singleByteToChar) { argument
101 super(cs);
1276 public Encoder(Charset cs) { argument
1277 super(cs);
1286 Encoder(Charset cs, short[] modIdx1, String modIdx2a) argument
[all...]
H A DIBM943_OLD.java33 import sun.nio.cs.HistoricallyNamedCharset;
34 import sun.nio.cs.ext.*;
48 public boolean contains(Charset cs) { argument
49 return (cs instanceof IBM943);
91 public Decoder(Charset cs) { argument
92 super(cs);
97 protected Decoder(Charset cs, String singleByteToChar) { argument
98 super(cs);
1335 public Encoder(Charset cs) { argument
1336 super(cs);
1345 Encoder(Charset cs, short[] modIdx1, String modIdx2a) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DAbstractCharsetProvider.java26 package sun.nio.cs;
72 packagePrefix = "sun.nio.cs";
128 Charset cs = sr.get();
129 if (cs != null)
130 return cs;
146 Charset cs = (Charset)c.newInstance();
147 cache.put(csn, new SoftReference<Charset>(cs));
148 return cs;
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11CNS11643.java31 import sun.nio.cs.ext.EUC_TW;
59 public boolean contains(Charset cs) { argument
60 return cs instanceof X11CNS11643;
65 public Encoder(Charset cs, int plane) { argument
66 super(cs);
133 protected Decoder(Charset cs, int plane) { argument
134 super(cs);
H A DX11GB18030_0.java31 import sun.nio.cs.ext.DoubleByteEncoder;
49 public boolean contains(Charset cs) { argument
50 return cs instanceof X11GB18030_0;
54 public Encoder(Charset cs) { argument
55 super(cs, index1, index2);
H A DX11GB18030_1.java31 import sun.nio.cs.ext.DoubleByteEncoder;
49 public boolean contains(Charset cs) { argument
50 return cs instanceof X11GB18030_1;
53 public Encoder(Charset cs) { argument
54 super(cs, index1, index2);
H A DX11GB2312.java31 import sun.nio.cs.ext.*;
32 import static sun.nio.cs.CharsetMapping.*;
45 public boolean contains(Charset cs) { argument
46 return cs instanceof X11GB2312;
52 public Encoder(Charset cs) { argument
53 super(cs, 2.0f, 2.0f);
104 public Decoder(Charset cs) { argument
105 super(cs, 0.5f, 1.0f);
H A DX11Johab.java31 import sun.nio.cs.ext.DoubleByteEncoder;
46 public boolean contains(Charset cs) { argument
47 return cs instanceof X11GB18030_1;
51 public Encoder(Charset cs) { argument
52 super(cs, index1, index2);
H A DX11KSC5601.java31 import sun.nio.cs.ext.*;
32 import static sun.nio.cs.CharsetMapping.*;
45 public boolean contains(Charset cs) { argument
46 return cs instanceof X11KSC5601;
52 public Encoder(Charset cs) { argument
53 super(cs, 2.0f, 2.0f);
103 public Decoder(Charset cs) { argument
104 super(cs, 0.5f, 1.0f);

Completed in 155 milliseconds

12345678910