Searched refs:check (Results 476 - 500 of 617) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DDeclarationStatement.java58 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:DeclarationStatement
H A DReturnStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ReturnStatement
/openjdk7/jdk/test/java/util/Arrays/
H A DBig.java105 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:Big
/openjdk7/jdk/test/java/util/Map/
H A DLockStep.java117 void check(boolean cond) {if (cond) pass(); else fail();} method in class:LockStep
/openjdk7/jdk/test/java/util/concurrent/Executors/
H A DThrows.java117 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:Throws
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DCustom.java39 static void check(boolean cond) { if (cond) pass(); else fail(); } method in class:Custom
/openjdk7/jdk/test/java/util/zip/
H A DFlaterTest.java171 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:FlaterTest
/openjdk7/jdk/test/sun/nio/cs/
H A DFindEncoderBugs.java341 check(cr.length() > 0);
385 check(dib.isDirect());
386 check(dob.isDirect());
515 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:FindEncoderBugs
/openjdk7/langtools/test/tools/javac/types/
H A DPrimitiveConversionTest.java63 void check(TypeHarness harness, Type from, Type to, Result expected) {
69 void check(TypeHarness harness, Type from, Type to, Result expected) {
80 abstract void check(TypeHarness harness, Type from, Type to, Result expected); method in class:PrimitiveConversionTest.ConversionKind
247 convKind.check(this, rows[i], cols[j], testKind.getResults(this)[i][j]);
/openjdk7/jdk/make/common/
H A DRules.gmk31 define check-conventions
182 $(check-conventions)
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DXslAttribute.java223 final int check = cpg.addMethodref(BASIS_LIBRARY_CLASS, "checkAttribQName",
227 il.append(new INVOKESTATIC(check));
H A DXslElement.java162 * Run type check on element name & contents
238 final int check = cpg.addMethodref(BASIS_LIBRARY_CLASS, "checkQName",
242 il.append(new INVOKESTATIC(check));
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGImageWriter.java197 cbLock.check();
358 cbLock.check();
490 // handle <= 8-bit samples. We now check the band sizes and throw
1102 cbLock.check();
1183 cbLock.check();
1198 cbLock.check();
1213 * NB: we do not check the call back lock here, we allow to abort
1239 cbLock.check();
1250 cbLock.check();
1889 void check() { method in class:JPEGImageWriter.CallBackLock
[all...]
/openjdk7/langtools/test/tools/javac/generics/diamond/7046778/
H A DDiamondAndInnerClassTest.java233 System.out.println("Total check executed: " + checkCount);
289 check();
292 void check() { method in class:DiamondAndInnerClassTest
310 //System.out.println("check " + expectedArgKinds[i] + " against " + argumentKinds[i]);
/openjdk7/langtools/test/tools/javac/varargs/6199075/
H A DT6199075.java172 check(source, ec, m1, m2, actual, argsArity);
175 void check(JavaSource source, ErrorChecker ec, VarargsMethod m1, VarargsMethod m2, TypeKind actual, ArgumentsArity argsArity) { method in class:T6199075
/openjdk7/langtools/test/tools/javac/varargs/warning/
H A DWarn4.java204 check(dc.warnings, sourceLevel,
210 static void check(Set<Warning> warnings, SourceLevel sourceLevel, boolean[] warnArr, JavaSource source, method in class:Warn4
H A DWarn5.java223 check();
226 void check() { method in class:Warn5
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DDatagramChannelImpl.java390 assert IOStatus.check(n);
485 assert IOStatus.check(n);
566 assert IOStatus.check(n);
595 assert IOStatus.check(n);
622 assert IOStatus.check(n);
651 assert IOStatus.check(n);
796 // check multicast address is compatible with this socket
807 // check source address
825 // check the registry to see if we are already a member of the group
/openjdk7/jdk/src/share/classes/sun/tools/javac/
H A DBatchEnvironment.java280 * check in Imports#resolve(). These are the current packages for
287 * exempt from the "exists" check in Imports#resolve().
300 * Set the set of packages which are exempt from the exists check
317 // will be exempt from the "exists" check in
610 boolean needsCompilation(Hashtable check, ClassDeclaration c) { argument
616 return needsCompilation(check, c);
620 if (check.get(c) == null) {
621 check.put(c, c);
626 if (needsCompilation(check, dep)) {
1097 * The method flushErrors() used to check fo
[all...]
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanAttributeInfoSupport.java199 check(this);
232 * @param <T> allows the compiler to check that the {@code defaultValue},
295 * @param <T> allows the compiler to check that the {@code
364 * @param <T> allows the compiler to check that the {@code
429 check(this);
455 static void check(OpenMBeanParameterInfo info) throws OpenDataException { method in class:OpenMBeanAttributeInfoSupport
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DX509KeyManagerImpl.java268 // than rsa_sign, dss_sign and ecdsa_sign, we don't have to check the
291 // if possible, check the public key in the issuer cert
440 // and includes the result of the certificate check
471 // enum for the type of certificate check we want to perform
473 // also includes the check code itself
476 // enum constant for "no check" (currently not used)
479 // enum constant for "tls client" check
484 // enum constant for "tls server" check
501 // check if this certificate is appropriate for this type of use
502 // first check extension
505 CheckResult check(X509Certificate cert, Date date) { method in class:X509KeyManagerImpl.CheckType
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsOldGen.cpp62 assert(_reserved.byte_size() <= gen_size_limit(), "Consistency check");
118 // Don't check at the very end of the heap as we'll assert that we're probing off
499 VerifyObjectStartArrayClosure check( this, &_start_array );
500 object_iterate(&check);
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp413 void FileMapInfo::assert_mark(bool check) { argument
414 if (!check) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DModel.java285 // check for unused plug-in customizations.
288 Set<CCustomizations> check = new HashSet<CCustomizations>();
290 if(!check.add(c)) {
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java542 check(imgref, imgtst, ar, isfill);
582 public static void check(BufferedImage imgref, BufferedImage imgtst, method in class:RenderClipTest
593 // We want to check for errors outside the clip at a higher
598 if (check(ar, wasfill,
606 if (check(ar, wasfill,
614 if (check(ar, wasfill,
622 if (check(ar, wasfill,
630 check(ar, wasfill,
636 public static boolean check(AnnotatedRenderOp ar, boolean wasfill, method in class:RenderClipTest
657 /* Inside of clip, check fo
[all...]

Completed in 70 milliseconds

<<11121314151617181920>>