Searched refs:check (Results 376 - 400 of 617) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/test/tools/javac/multicatch/7030606/
H A DDisjunctiveTypeWellFormednessTest.java166 check();
169 void check() { method in class:DisjunctiveTypeWellFormednessTest
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.hpp116 static void assert_mark(bool check);
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DAtomicAppend.java71 void check(boolean cond) {if (cond) pass(); else fail();} method in class:AtomicAppend
/openjdk7/jdk/test/sun/tools/native2ascii/
H A DPermission.java77 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:Permission
/openjdk7/jdk/test/tools/jar/
H A DUpdateJar.java78 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:UpdateJar
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngtest.c53 * In these cases, it is best to check with another tool such as "pngcheck"
378 png_size_t check = 0; local
387 check = fread(data, 1, length, (png_FILE_p)io_ptr);
390 if (check != length)
411 png_size_t check; local
420 check = fread(n_data, 1, length, io_ptr);
426 check = 0;
437 check += err;
444 if (check != length)
471 png_size_t check; local
496 png_size_t check; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DKeyChecker.java108 public void check(Certificate cert, Collection<String> unresCritExts) method in class:KeyChecker
115 // if final certificate, check that target constraints are satisfied
120 "constraints check failed");
153 // in the certificate - in which case there is nothing to check
161 (msg + " check failed: keyCertSign bit is not set", null,
H A DReverseBuilder.java351 currentState.untrustedChecker.check(cert,
355 * check for looping - abort a loop if
360 * in order to facilitate the check to see if there are
392 /* check if target cert */
395 /* check if CA cert */
401 /* check if CA cert */
422 * If final cert, check that it satisfies specified target
427 "constraints check failed");
436 currentState.crlChecker.check(cert,
447 ("name constraints check faile
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBinaryAssignExpression.java70 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:BinaryAssignExpression
H A DBreakStatement.java54 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:BreakStatement
H A DContinueStatement.java55 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ContinueStatement
H A DConditionalExpression.java110 public Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ConditionalExpression
113 return left.check(env, ctx, vset.copy(), exp).join(right.check(env, ctx, vset, exp));
165 // We need to check if right is null in case costInline()
H A DFinallyStatement.java71 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:FinallyStatement
102 vset = init.check(env, ctx, vset, exp);
169 Vset vset1 = body.check(env, newctx1, vset.copy(), newexp)
175 Vset vset2 = finalbody.check(env, newctx2, vset, exp);
184 // Add newexp's back into exp; cf. ThrowStatement.check().
H A DForStatement.java60 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:ForStatement
80 vset = body.check(env, newctx, cvars.vsTrue, exp);
83 vset = inc.check(env, newctx, vset, exp);
H A DStatement.java104 // Set up ctx.getReturnContext() for the sake of ReturnStatement.check().
108 vset = check(env, ctx, vset, exp);
167 Vset check(Environment env, Context ctx, Vset vset, Hashtable exp) { method in class:Statement
168 throw new CompilerError("check");
173 return check(env, ctx, vset, exp);
/openjdk7/jdk/test/java/util/ArrayList/
H A DBug6533203.java51 void check(boolean cond) {if (cond) pass(); else fail();} method in class:Bug6533203
/openjdk7/jdk/test/java/util/TreeMap/
H A DEmptyMapAndNulls.java112 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:EmptyMapAndNulls
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DTimeOutShrink.java73 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:TimeOutShrink
/openjdk7/jdk/test/java/util/zip/
H A DTestZipError.java107 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:TestZipError
/openjdk7/jdk/test/sun/nio/cs/
H A DEucJpLinux0212.java71 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:EucJpLinux0212
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodes.java334 public static void check(int code) { method in class:Bytecodes
370 public static String name (int code) { check(code); return _name [code]; }
371 public static String format (int code) { check(code); return _format [code]; }
373 public static int resultType (int code) { check(code); return _result_type [code]; }
374 public static int depth (int code) { check(code); return _depth [code]; }
375 public static int lengthFor (int code) { check(code); return _lengths [code] & 0xF; }
376 public static int wideLengthFor(int code) { check(code); return _lengths [code] >> 4; }
377 public static boolean canTrap (int code) { check(code); return has_all_flags(code, _bc_can_trap, false); }
378 public static int javaCode (int code) { check(code); return _java_code [code]; }
379 public static boolean canRewrite (int code) { check(cod
[all...]
/openjdk7/jdk/test/java/nio/charset/Charset/
H A DRegisteredCharsets.java168 static void check(String csn, boolean testRegistered) throws Exception { method in class:RegisteredCharsets
188 check(ianaRegistered[i], true);
191 check(ianaUnRegistered[i], false);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBits.java88 Assert.check(x >= 0);
116 Assert.check(x >= 0);
172 Assert.check(wordlen == 32);
/openjdk7/jdk/test/java/util/Timer/
H A DArgs.java54 check(latch.getCount() > 0);
107 check(System.currentTimeMillis() - start < 500);
127 void check(boolean cond) {if (cond) pass(); else fail();} method in class:Args
/openjdk7/jdk/test/java/util/logging/
H A DLoggingDeadlock2.java112 check(counter.get() == JITTER);
231 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:LoggingDeadlock2
232 static void check(boolean cond, String m) {if (cond) pass(); else fail(m);} method in class:LoggingDeadlock2

Completed in 66 milliseconds

<<11121314151617181920>>