Searched refs:cs (Results 251 - 275 of 681) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DINVOKEINTERFACE.java134 Class[] cs = new Class[4 + ExceptionConstants.EXCS_INTERFACE_METHOD_RESOLUTION.length];
137 cs, 0, ExceptionConstants.EXCS_INTERFACE_METHOD_RESOLUTION.length);
139 cs[ExceptionConstants.EXCS_INTERFACE_METHOD_RESOLUTION.length+3] = ExceptionConstants.INCOMPATIBLE_CLASS_CHANGE_ERROR;
140 cs[ExceptionConstants.EXCS_INTERFACE_METHOD_RESOLUTION.length+2] = ExceptionConstants.ILLEGAL_ACCESS_ERROR;
141 cs[ExceptionConstants.EXCS_INTERFACE_METHOD_RESOLUTION.length+1] = ExceptionConstants.ABSTRACT_METHOD_ERROR;
142 cs[ExceptionConstants.EXCS_INTERFACE_METHOD_RESOLUTION.length] = ExceptionConstants.UNSATISFIED_LINK_ERROR;
144 return cs;
H A DGETFIELD.java87 Class[] cs = new Class[2 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
90 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
92 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+1] =
94 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] =
97 return cs;
H A DNEW.java82 Class[] cs = new Class[2 + ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length];
85 cs, 0, ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length);
87 cs[ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length+1] = ExceptionConstants.INSTANTIATION_ERROR;
88 cs[ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length] = ExceptionConstants.ILLEGAL_ACCESS_ERROR;
90 return cs;
H A DPUTFIELD.java88 Class[] cs = new Class[2 + ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length];
91 cs, 0, ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length);
93 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length+1] =
95 cs[ExceptionConstants.EXCS_FIELD_AND_METHOD_RESOLUTION.length] =
98 return cs;
H A DANEWARRAY.java81 Class[] cs = new Class[1 + ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length];
84 cs, 0, ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length);
85 cs[ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length] =
87 return cs;
H A DCHECKCAST.java85 Class[] cs = new Class[1 + ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length];
88 cs, 0, ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length);
89 cs[ExceptionConstants.EXCS_CLASS_AND_INTERFACE_RESOLUTION.length] =
91 return cs;
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DBig5_Solaris.java26 package sun.nio.cs.ext;
31 import sun.nio.cs.HistoricallyNamedCharset;
33 import static sun.nio.cs.CharsetMapping.*;
45 public boolean contains(Charset cs) { argument
46 return ((cs.name().equals("US-ASCII"))
47 || (cs instanceof Big5)
48 || (cs instanceof Big5_Solaris));
H A DIBM943C.java26 package sun.nio.cs.ext;
32 import sun.nio.cs.HistoricallyNamedCharset;
45 public boolean contains(Charset cs) { argument
46 return ((cs.name().equals("US-ASCII"))
47 || (cs instanceof IBM943C));
H A DIBM949C.java26 package sun.nio.cs.ext;
32 import sun.nio.cs.HistoricallyNamedCharset;
45 public boolean contains(Charset cs) { argument
46 return ((cs.name().equals("US-ASCII"))
47 || (cs instanceof IBM949C));
H A DJIS_X_0212_MS5022X_Decoder.java26 package sun.nio.cs.ext;
36 public JIS_X_0212_MS5022X_Decoder(Charset cs) { argument
37 super(cs);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontDescriptor.java30 import sun.nio.cs.HistoricallyNamedCharset;
51 Charset cs = encoder.charset();
52 if (cs instanceof HistoricallyNamedCharset)
53 this.charsetName = ((HistoricallyNamedCharset)cs).historicalName();
55 this.charsetName = cs.name();
/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...]
H A DCombinedPerms.java43 CodeSource cs =
47 ProtectionDomain pd = new ProtectionDomain(cs, p, null, null);
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
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);
/openjdk7/jdk/test/sun/nio/cs/
H A DTestStringCodingUTF8.java43 Charset cs = Charset.forName("UTF-8");
48 test(cs, bmp, 0, bmp.length);
61 test(cs, bmpsupp, 0, bmpsupp.length);
70 test(cs, bmpsupp, off, len);
78 if (!new String(ba, cs.name()).equals(
79 new String(decode(cs, ba, 0, ba.length))))
81 //new String(cs);
82 if (!new String(ba, cs).equals(
83 new String(decode(cs, ba, 0, ba.length))))
84 throw new RuntimeException("new String(cs) faile
89 test(Charset cs, char[] ca, int off, int len) argument
113 decode(Charset cs, byte[] ba, int off, int len) argument
139 encode(Charset cs, char[] ca, int off, int len) argument
[all...]
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/hotspot/src/share/vm/asm/
H A Dassembler.cpp57 CodeSection* cs = code->insts();
58 cs->clear_mark(); // new assembler kills old mark
59 _code_section = cs;
60 _code_begin = cs->start();
61 _code_limit = cs->limit();
62 _code_pos = cs->end();
71 void AbstractAssembler::set_code_section(CodeSection* cs) { argument
72 assert(cs->outer() == code_section()->outer(), "sanity");
73 assert(cs->is_allocated(), "need to pre-allocate this section");
74 cs
84 CodeSection* cs = cb->stubs(); local
106 CodeSection* cs = cb->consts(); local
252 CodeSection* cs = cb->code_section(n); local
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DName.java48 public boolean contentEquals(CharSequence cs) { argument
49 return toString().equals(cs.toString());
170 /** Copy all bytes of this name to buffer cs, starting at start.
172 public void getBytes(byte cs[], int start) { argument
173 System.arraycopy(getByteArray(), getByteOffset(), cs, start, getByteLength());
196 /** Get the name from the characters in cs[start..start+len-1].
198 public abstract Name fromChars(char[] cs, int start, int len); argument
203 char[] cs = s.toCharArray();
204 return fromChars(cs, 0, cs
210 fromUtf(byte[] cs) argument
217 fromUtf(byte[] cs, int start, int len) argument
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DJNDIFailureTest.java46 JMXConnectorServer cs =
49 cs.start();
56 if (cs.isActive()) {
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset.java46 import sun.nio.cs.StandardCharsets;
47 import sun.nio.cs.ThreadLocalCoders;
290 new GetPropertyAction("sun.nio.cs.bugLevel", ""));
333 private static void cache(String charsetName, Charset cs) { argument
335 cache1 = new Object[] { charsetName, cs };
415 Charset cs = cp.charsetForName(charsetName);
416 if (cs != null)
417 return cs;
438 = Class.forName("sun.nio.cs.ext.ExtendedCharsets");
486 Charset cs;
747 contains(Charset cs) argument
[all...]
/openjdk7/jdk/test/java/io/charStreams/
H A DWriteLengths.java43 char[] cs = new char[len];
44 osw.write(cs);
/openjdk7/jdk/test/java/net/URLConnection/
H A DChunkedEncoding.java84 int cs = 0;
87 cs = (cs + buf[i]) % 65536;
113 String trailer = "Checksum:" + cs + "\r\n";
162 int cs = 0;
168 cs = (cs + b[i]) % 65536;
181 if (rcvd_cs != cs) {
/openjdk7/jdk/test/java/nio/channels/Channels/
H A DTinyBuffers.java38 private static Charset cs = Charset.forName("UTF-16"); field in class:TinyBuffers
43 Reader r = Channels.newReader(ch, cs.newDecoder(), sz);
/openjdk7/jdk/test/java/security/Policy/GetPermissions/
H A DJarURL.java45 CodeSource cs = new CodeSource(codeSourceURL, new Certificate[0]);
46 PermissionCollection perms = Policy.getPolicy().getPermissions(cs);
/openjdk7/jdk/test/java/security/cert/
H A DGetInstance.java43 CertStore cs = CertStore.getInstance("LDAP", ccsp);
49 CertStore cs = CertStore.getInstance("BOGUS", null);

Completed in 249 milliseconds

<<11121314151617181920>>