Searched refs:check (Results 151 - 175 of 617) sorted by relevance

1234567891011>>

/openjdk7/hotspot/test/compiler/6823354/
H A DTest6823354.java56 check(x, lzcomp(x), lzint(x));
62 check(x, lzcomp(x), lzint(x));
84 check(x, lzcomp(x), lzint(x));
90 check(x, lzcomp(x), lzint(x));
113 check(x, tzcomp(x), tzint(x));
119 check(x, tzcomp(x), tzint(x));
141 check(x, tzcomp(x), tzint(x));
147 check(x, tzcomp(x), tzint(x));
164 static void check(int value, int result, int expected) { method in class:Test6823354
170 static void check(lon method in class:Test6823354
[all...]
/openjdk7/jdk/make/common/internal/
H A DNativeCompileRules.gmk76 @$(check-conventions)
81 @$(check-conventions)
128 @$(check-conventions)
143 @$(check-conventions)
177 @$(check-conventions)
184 @$(check-conventions)
189 @$(check-conventions)
194 @$(check-conventions)
204 @$(check-conventions)
/openjdk7/jdk/test/java/lang/invoke/6991596/
H A DTest6991596.java82 check(x, a, b);
83 //check(x, c, x);
92 check(x, a, b);
101 check(x, a, b);
110 check(x, a, b);
139 check(x, a, b);
148 check(x, a, b);
157 check(x, a, b);
166 check(x, a, b);
193 check(
441 static void check(boolean x, boolean e, boolean a) { p(z2h(x), z2h(e), z2h(a)); assert e == a : z2h(x) + ": " + z2h(e) + " != " + z2h(a); } method in class:Test6991596
442 static void check(boolean x, byte e, byte a) { p(z2h(x), i2h(e), i2h(a)); assert e == a : z2h(x) + ": " + i2h(e) + " != " + i2h(a); } method in class:Test6991596
443 static void check(boolean x, int e, int a) { p(z2h(x), i2h(e), i2h(a)); assert e == a : z2h(x) + ": " + i2h(e) + " != " + i2h(a); } method in class:Test6991596
445 static void check(int x, boolean e, boolean a) { p(i2h(x), z2h(e), z2h(a)); assert e == a : i2h(x) + ": " + z2h(e) + " != " + z2h(a); } method in class:Test6991596
446 static void check(int x, byte e, byte a) { p(i2h(x), i2h(e), i2h(a)); assert e == a : i2h(x) + ": " + i2h(e) + " != " + i2h(a); } method in class:Test6991596
447 static void check(int x, int e, int a) { p(i2h(x), i2h(e), i2h(a)); assert e == a : i2h(x) + ": " + i2h(e) + " != " + i2h(a); } method in class:Test6991596
449 static void check(long x, boolean e, boolean a) { p(l2h(x), z2h(e), z2h(a)); assert e == a : l2h(x) + ": " + z2h(e) + " != " + z2h(a); } method in class:Test6991596
450 static void check(long x, byte e, byte a) { p(l2h(x), i2h(e), i2h(a)); assert e == a : l2h(x) + ": " + i2h(e) + " != " + i2h(a); } method in class:Test6991596
451 static void check(long x, int e, int a) { p(l2h(x), i2h(e), i2h(a)); assert e == a : l2h(x) + ": " + i2h(e) + " != " + i2h(a); } method in class:Test6991596
[all...]
/openjdk7/jdk/test/tools/jar/
H A DChangeDir.java43 check(ff.delete());
45 check(dir.delete());
46 check(new File(jarName).delete());
73 check(testDir.mkdirs());
77 check(testFile.createNewFile());
121 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:ChangeDir
/openjdk7/jdk/test/java/util/concurrent/TimeUnit/
H A DBasic.java40 check(u instanceof TimeUnit);
45 check(readObject(serializedForm(u)) == u);
66 check(elapsedMillis >= 0);
67 /* Might not sleep on windows: check(elapsedMillis >= 3); */
68 check(elapsedMillis < 1000);
81 check(Arrays.equals(serializedForm(SECONDS), serializedForm));
90 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:Basic
/openjdk7/jdk/test/java/util/zip/
H A DConstructDeflaterInput.java109 check(len == 0);
123 check(!dis.markSupported());
124 check(dis.available() == 1);
125 check(!def.getEnded());
136 check(!def.getEnded());
167 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:ConstructDeflaterInput
H A DInflateIn_DeflateOut.java145 check(readFully(iis, buf, buf.length));
146 check(Arrays.equals(data, buf));
149 private static void check(InputStream is, OutputStream os) method in class:InflateIn_DeflateOut
162 check(readFully(is, buf, buf.length));
163 check(Arrays.equals(data, buf));
177 check(Arrays.equals(data, buf));
187 check(readLineIfAvailable(is, sb));
200 check(iis, dos);
212 check(gis, gos);
231 check(readLineIfAvailabl
278 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:InflateIn_DeflateOut
[all...]
/openjdk7/jdk/test/sun/net/www/
H A DHeaderTests.java97 check (hp, s23_expect);
100 check (hp, s23_expect);
103 check (hp, s23_expect1);
106 check (hp, s23_expect2);
113 boolean empty = check (p, expect[i]);
120 static boolean check (HeaderParser p, String[][]expect) { method in class:HeaderTests
/openjdk7/jdk/test/com/sun/nio/sctp/SctpServerChannel/
H A DNonBlockingAccept.java139 check(ssc.isBlocking() == false, "Should be in non-blocking mode");
153 check(nextReady.equals(ssc),
155 check(sk.isAcceptable(),
157 check(!sk.isReadable(),
159 check(!sk.isWritable(),
161 check(!sk.isConnectable(),
166 check(acceptsc != null,
191 check(sc.association() != null,
193 check(!(sc.getRemoteAddresses().isEmpty()),
195 check(!(s
215 void check(boolean cond) {if (cond) pass(); else fail();} method in class:NonBlockingAccept
216 void check(boolean cond, String failMessage) {if (cond) pass(); else fail(failMessage);} method in class:NonBlockingAccept
[all...]
/openjdk7/jdk/test/java/util/concurrent/FutureTask/
H A DCustomized.java27 * @summary Test state transitions; check protected methods are called
70 check(! task.isDone());
71 check(! task.isCancelled());
79 check(task.isDone());
80 check(! task.isCancelled());
81 check(task.get() != null);
86 check(task.isDone());
87 check(task.isCancelled());
96 check(task.isDone());
97 check(! tas
198 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:Customized
[all...]
/openjdk7/hotspot/test/compiler/6921969/
H A DTestMultiplyLongHiZero.java36 private static void check(long leftFactor, long rightFactor, long optimizedProduct, long constantProduct) { method in class:TestMultiplyLongHiZero
58 check((long) leftFactor,
65 check((leftFactor & mask32),
72 check((long) leftFactor,
79 check((leftFactor & mask32),
86 check((leftFactor & mask32),
93 check((long) leftFactor,
100 check((leftFactor & mask32),
/openjdk7/jdk/test/java/util/concurrent/locks/Lock/
H A DFlakyMutex.java58 check((t instanceof MyError) ||
78 try { check(! m.tryLock()); }
81 try { check(! m.tryLock(1, TimeUnit.MICROSECONDS)); }
89 check(es.awaitTermination(30, TimeUnit.SECONDS));
100 check(getFirstQueuedThread() != Thread.currentThread());
102 check(hasQueuedThreads());
103 check(!hasQueuedPredecessors());
141 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:FlakyMutex
/openjdk7/jdk/src/share/classes/sun/misc/
H A DRef.java62 Object t = check();
104 public synchronized Object check() { method in class:Ref
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DPKIXCertPathChecker.java37 * For example, an implementation may check for and process a critical private
44 * class. Each of the <code>PKIXCertPathChecker</code>s {@link #check check}
52 * check successive certificates. The {@link #init init} method is used
72 * Additional input parameters required for executing the check may be
101 * certificates will be passed to the {@link #check check} method
106 * the <code>check</code> method. If <code>true</code>, certificates
110 * <code>PKIXCertPathChecker</code> is unable to check certificates in
120 * its checks when certificates are presented to the <code>check</cod
161 public abstract void check(Certificate cert, method in class:PKIXCertPathChecker
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpStandardMetaServer.java116 public void check(SnmpValue x, long arc, Object userData) method in interface:SnmpStandardMetaServer
/openjdk7/jdk/test/java/awt/dnd/DnDFileGroupDescriptor/
H A DDnDTarget.java52 boolean check(DropTargetDragEvent dtde) method in class:DnDTarget
62 if(check(dtde)){
69 check(dtde);
73 check(dtde);
/openjdk7/jdk/test/java/io/pathNames/unix/
H A DTrailingSlash.java37 static void check(String what, String fns, method in class:TrailingSlash
60 check("FileInputStream", fns, fis, threw);
70 check("RandomAccessFile", fns, raf, threw);
80 check("FileOutputStream", fns, fos, threw);
/openjdk7/jdk/test/java/util/Collections/
H A DT6433170.java36 check(x.isEmpty());
37 check(x.size() == 0);
38 check(x.toArray().length == 0);
68 void check(boolean cond) {if (cond) pass(); else fail();} method in class:T6433170
/openjdk7/jdk/test/java/util/concurrent/ThreadPoolExecutor/
H A DSelfInterrupt.java50 check(! Thread.interrupted());
54 check(! Thread.interrupted());
58 check(pool.awaitTermination(1000L, TimeUnit.SECONDS));
67 void check(boolean cond) {if (cond) pass(); else fail();} method in class:SelfInterrupt
H A DThrowingTasks.java80 check(! Thread.currentThread().isInterrupted());
145 check(tpe.getQueue().isEmpty());
146 check(tpe.isShutdown());
147 check(tpe.isTerminated());
148 check(! tpe.isTerminating());
152 check(tpe.awaitTermination(0, TimeUnit.SECONDS));
169 check(! isTerminated());
175 check(((Thrower)((Flaky)r).execute).t == t);
176 check(! isTerminated());
182 check(isShutdow
260 static void check(boolean cond) {if (cond) pass(); else fail();} method in class:ThrowingTasks
[all...]
/openjdk7/langtools/test/tools/javac/processing/environment/round/
H A DTestContext.java63 check(c.get(JavacElements.class), eltUtils);
64 check(c.get(JavacTypes.class), typeUtils);
65 check(c.get(JavacTrees.class), treeUtils);
74 <T> void check(T actual, T expected) { method in class:TestContext
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DResponseAPDU.java67 check(apdu);
71 private static void check(byte[] apdu) { method in class:ResponseAPDU
182 check(apdu);
/openjdk7/jdk/src/share/classes/java/security/
H A DSigner.java109 check("getSignerPrivateKey");
134 check("setSignerKeyPair");
176 private static void check(String directive) { method in class:Signer
/openjdk7/jdk/test/sun/security/pkcs12/
H A DBug6415637.java39 check(WITH_NULL);
40 check(WITHOUT_NULL);
43 private static void check(String encodedBlob) throws Exception { method in class:Bug6415637
/openjdk7/jdk/test/javax/crypto/spec/DESKeySpec/
H A DCheckParity.java60 static private void check(String alg, byte [] key, method in class:CheckParity
81 check("DES", testKey, expectedKey, new DESKeySpec(testKey));
96 check("DESede", key3, expectedKey3, new DESedeKeySpec(key3));

Completed in 90 milliseconds

1234567891011>>