Searched defs:Check (Results 1 - 5 of 5) sorted by relevance

/openjdk7/langtools/test/tools/javac/multicatch/model/
H A DCheck.java27 @interface Check {} interface
/openjdk7/jdk/test/java/nio/charset/coders/
H A DCheck.java26 * @summary Check charsets against reference files
29 * @run main Check shift_jis ref.shift_jis
30 * @run main/othervm -Dsun.nio.cs.map=Windows-31J/Shift_JIS Check shift_jis ref.windows-31j
41 public class Check { class
53 private Check(String csn, String refn) { method in class:Check
58 private Check load()
147 // Usage: Check charsetName referenceFileName
149 new Check(args[0], args[1]).load().check();
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsxform.c509 // Check whatever this is a true floating point transform
636 // Check colorspace
638 cmsBool IsProperColorSpace(cmsColorSpaceSignature Check, cmsUInt32Number dwFormat) argument
641 int Space2 = _cmsLCMScolorSpace(Check);
696 // Check if proper colorspaces
714 // Check channel count
H A Dcmscgats.c502 // Check if current symbol is same as specified. issue an error else.
504 cmsBool Check(cmsIT8* it8, SYMBOL sy, const char* Err) function
929 if (!Check(it8, SSTRING, "Filename expected")) return;
964 if (!Check(it8, SEOLN, "Expected separator")) return FALSE;
1177 // Check if property is already in list
1916 // Check for data completion.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java57 public class Check { class
58 protected static final Context.Key<Check> checkKey =
59 new Context.Key<Check>();
83 public static Check instance(Context context) {
84 Check instance = context.get(checkKey);
86 instance = new Check(context);
90 protected Check(Context context) { method in class:Check
334 /** Check that variable does not hide variable with same name in
355 /** Check that a class or interface does not hide a class or
376 /** Check tha
[all...]

Completed in 68 milliseconds