Searched defs:cs (Results 201 - 225 of 228) sorted by relevance

12345678910

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.cpp123 CodeSection* cs = _masm->code_section(); local
124 if (cs->remaining() < (int)(NOT_LP64(1*K)LP64_ONLY(2*K))) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacElements.java561 public Name getName(CharSequence cs) { argument
562 return names.fromString(cs.toString());
/openjdk7/jdk/test/java/util/logging/
H A DTestAppletLoggerContext.java81 public PermissionCollection getPermissions(CodeSource cs) { argument
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java179 private final Charset cs; field in class:FindDecoderBugs.CharsetTester
186 CharsetTester(Charset cs) { argument
187 this.cs = cs;
201 CharsetDecoder coder = cs.newDecoder();
210 cs, r);
213 // cs, r);
216 cs, r);
219 // cs, r);
226 cs,
362 isStateChanger(Charset cs, byte[] ia) argument
377 isIncompletePrefix(Charset cs, byte[] ia) argument
385 testCharset(Charset cs) argument
[all...]
H A DFindEncoderBugs.java170 private final Charset cs; field in class:FindEncoderBugs.CharsetTester
194 CharsetTester(Charset cs) { argument
195 this.cs = cs;
197 cs.name().matches(".*BOM.*") ||
198 cs.name().equals("UTF-16");
224 cs, r);
231 cs, r);
244 cs, r);
259 cs,
469 testCharset(Charset cs) argument
[all...]
H A DEUC_TW_OLD.java35 import sun.nio.cs.HistoricallyNamedCharset;
36 import sun.nio.cs.Surrogate;
67 public boolean contains(Charset cs) { argument
68 return ((cs.name().equals("US-ASCII"))
69 || (cs instanceof EUC_TW_OLD));
10547 public Decoder(Charset cs) { argument
10548 super(cs, 2.0f, 2.0f);
10763 public Encoder(Charset cs) { argument
10764 super(cs, 4.0f, 4.0f);
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DCharsetMapping.java26 package sun.nio.cs;
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM933_OLD.java32 import sun.nio.cs.HistoricallyNamedCharset;
33 import sun.nio.cs.Surrogate;
34 import sun.nio.cs.ext.*;
50 public boolean contains(Charset cs) { argument
51 return (cs instanceof IBM933);
65 * converters co-exist with the sun.nio.cs.{ext} charset coders
100 public Decoder(Charset cs) { argument
101 super(cs);
2633 public Encoder(Charset cs) { argument
2634 this(cs, ne
2637 Encoder(Charset cs, byte[] repl, boolean doSBCS) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DColorModel.java1700 static boolean isLinearRGBspace(ColorSpace cs) { argument
1703 return (cs == CMSManager.LINEAR_RGBspace);
1706 static boolean isLinearGRAYspace(ColorSpace cs) { argument
1709 return (cs == CMSManager.GRAYspace);
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1021 * @param cs
1030 public boolean contentEquals(CharSequence cs) { argument
1031 if (value.length != cs.length())
1034 if (cs instanceof AbstractStringBuilder) {
1036 char v2[] = ((AbstractStringBuilder) cs).getValue();
1047 if (cs.equals(this))
1054 if (v1[i] != cs.charAt(i))
H A DClassLoader.java665 CodeSource cs = pd.getCodeSource();
667 if (cs != null && cs.getLocation() != null) {
668 source = cs.getLocation().toString();
923 private void checkCerts(String name, CodeSource cs) { argument
928 if (cs != null) {
929 certs = cs.getCertificates();
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java2656 * @param cs
2671 public static BufferedReader newBufferedReader(Path path, Charset cs) argument
2674 CharsetDecoder decoder = cs.newDecoder();
2696 * @param cs
2715 public static BufferedWriter newBufferedWriter(Path path, Charset cs, argument
2719 CharsetEncoder encoder = cs.newEncoder();
2988 * @param cs
3005 public static List<String> readAllLines(Path path, Charset cs) argument
3008 try (BufferedReader reader = newBufferedReader(path, cs)) {
3102 * @param cs
3119 write(Path path, Iterable<? extends CharSequence> lines, Charset cs, OpenOption... options) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DColor.java254 private ColorSpace cs = null; field in class:Color
543 cs = cspace;
1110 if (cs == null) {
1111 cs = ColorSpace.getInstance(ColorSpace.CS_sRGB);
1122 float tmp[] = cs.toCIEXYZ(f);
1154 if (cs == null) {
1155 cs = ColorSpace.getInstance(ColorSpace.CS_sRGB);
1166 float tmp[] = cs.toCIEXYZ(f);
1182 if (cs == null) {
1183 cs
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.java209 void addICC(ICC_ColorSpace cs) throws IOException { argument
214 iccSegment = new ICCMarkerSegment(cs);
482 ColorSpace cs = cm.getColorSpace();
503 } else if (cs.getType() == ColorSpace.TYPE_RGB) {
526 } else if (cs.getType() == ColorSpace.TYPE_GRAY) {
1382 ICCMarkerSegment(ICC_ColorSpace cs) { argument
1387 profile = cs.getProfile().getData();
H A DJPEG.java245 static boolean isNonStandardICC(ColorSpace cs) { argument
247 if ((cs instanceof ICC_ColorSpace)
248 && (!cs.isCS_sRGB())
249 && (!cs.equals(ColorSpace.getInstance(ColorSpace.CS_CIEXYZ)))
250 && (!cs.equals(ColorSpace.getInstance(ColorSpace.CS_GRAY)))
251 && (!cs.equals(ColorSpace.getInstance(ColorSpace.CS_LINEAR_RGB)))
252 && (!cs.equals(ColorSpace.getInstance(ColorSpace.CS_PYCC)))
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java1230 final CodeSource cs = pd.getCodeSource();
1231 if (cs == null)
1237 return canonicalizeCodebase(cs, true);
1256 final CodeSource cs) {
1261 return canonicalizeCodebase(cs, true);
1269 final CodeSource cs,
1274 addPermissions(perms, cs, principals, entry);
1281 addPermissions(perms, cs, principals, entry);
1287 Certificate certs[] = cs.getCertificates();
1306 final CodeSource cs,
1255 getPermissions(Permissions perms, final CodeSource cs) argument
1268 getPermissions(Permissions perms, final CodeSource cs, Principal[] principals) argument
1305 addPermissions(Permissions perms, final CodeSource cs, Principal[] principals, final PolicyEntry entry) argument
1745 getSignerCertificates(CodeSource cs) argument
1786 canonicalizeCodebase(CodeSource cs, boolean extractSignerCerts) argument
2108 PolicyEntry(CodeSource cs, List<PolicyParser.PrincipalEntry> principals) argument
2115 PolicyEntry(CodeSource cs) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DAsyncBoxView.java241 protected synchronized void majorRequirementChange(ChildState cs, float delta) { argument
258 protected synchronized void minorRequirementChange(ChildState cs) { argument
286 ChildState cs = getChildState(i);
288 if (cs.min > min.min) {
289 min = cs;
291 if (cs.pref > pref.pref) {
292 pref = cs;
296 span += cs.getMajorSpan();
361 ChildState cs = stats.remove(offset);
362 float csSpan = cs
942 childChanged(ChildState cs) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp174 RelocIterator::RelocIterator(CodeSection* cs, address begin, address limit) { argument
177 _current = cs->locs_start()-1;
178 _end = cs->locs_end();
179 _addr = cs->start();
182 CodeBuffer* cb = cs->outer();
185 CodeSection* cs = cb->code_section(n); local
186 _section_start[n] = cs->start();
187 _section_end [n] = cs->end();
192 assert(begin == NULL || begin >= cs->start(), "in bounds");
193 assert(limit == NULL || limit <= cs
[all...]
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp149 void CodeBuffer::initialize_section_size(CodeSection* cs, csize_t size) { argument
150 assert(cs != &_insts, "insts is the memory provider, not the consumer");
152 int align = cs->alignment();
160 cs->initialize(middle, limit - middle);
161 assert(cs->start() == middle, "sanity");
162 assert(cs->limit() == limit, "sanity");
164 if (_insts.has_locs()) cs->initialize_locs(1);
167 void CodeBuffer::freeze_section(CodeSection* cs) { argument
168 CodeSection* next_cs = (cs == consts())? NULL: code_section(cs
232 const CodeSection* cs = code_section(n); local
240 const CodeSection* cs = code_section(n); local
425 const CodeSection* cs = code_section(n); local
449 const CodeSection* cs = code_section(n); local
531 const CodeSection* cs = code_section(n); local
641 const CodeSection* cs = code_section(n); local
1047 CodeSection* cs = code_section(n); local
1079 CodeSection* cs = code_section(n); local
[all...]
H A DcodeBuffer.hpp136 void take_over_code_from(CodeSection* cs) { argument
137 _start = cs->_start;
138 _mark = cs->_mark;
139 _end = cs->_end;
140 _limit = cs->_limit;
141 _locs_point = cs->_locs_point;
362 void initialize_section_size(CodeSection* cs, csize_t size);
364 void freeze_section(CodeSection* cs);
367 void take_over_code_from(CodeBuffer* cs);
437 CodeSection* cs local
[all...]
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXToolkit.c932 const char *cs; local
934 cs = NULL;
937 cs = JNU_GetStringPlatformChars(env, js, NULL);
939 if (cs == NULL) {
940 cs = empty;
942 cargv[i] = cs;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.h104 INLINE Lock(const CriticalSection& cs) : critSec(cs) { argument
135 #define CRITICAL_SECTION_ENTER(cs) { \
137 "CS.Wait: tid, cs, file, line = 0x%x, 0x%x, %s, %d", \
138 GetCurrentThreadId(), &(cs), __FILE__, __LINE__); \
139 (cs).Enter(); \
141 "CS.Enter: tid, cs, file, line = 0x%x, 0x%x, %s, %d", \
142 GetCurrentThreadId(), &(cs), __FILE__, __LINE__); \
145 #define CRITICAL_SECTION_LEAVE(cs) { \
147 "CS.Leave: tid, cs, fil
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java2166 public PermissionCollection getPermissions(CodeSource cs) { argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java514 boolean isDone(Env<AttrContext> env, CompileState cs) { argument
516 return ecs != null && ecs.isDone(cs);
527 protected boolean shouldStop(CompileState cs) { argument
531 return cs.ordinal() > shouldStopPolicy.ordinal();
547 protected final <T> Queue<T> stopIfError(CompileState cs, Queue<T> queue) { argument
548 return shouldStop(cs) ? ListBuffer.<T>lb() : queue;
551 protected final <T> List<T> stopIfError(CompileState cs, List<T> list) { argument
552 return shouldStop(cs) ? List.<T>nil() : list;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DNames.java283 public Name fromChars(char[] cs, int start, int len) { argument
284 return table.fromChars(cs, start, len);
291 public Name fromUtf(byte[] cs) { argument
292 return table.fromUtf(cs);
295 public Name fromUtf(byte[] cs, int start, int len) { argument
296 return table.fromUtf(cs, start, len);

Completed in 252 milliseconds

12345678910