Searched defs:check (Results 1 - 17 of 17) sorted by relevance

/libcore/luni/src/test/java/libcore/javax/crypto/spec/
H A DKeyFactoryTestDH.java30 @Override protected void check(KeyPair keyPair) { method in class:KeyFactoryTestDH
H A DKeyFactoryTestDSA.java31 @Override protected void check(KeyPair keyPair) { method in class:KeyFactoryTestDSA
H A DKeyFactoryTestRSA.java32 @Override protected void check(KeyPair keyPair) { method in class:KeyFactoryTestRSA
/libcore/luni/src/main/java/java/security/cert/
H A DPKIXCertPathChecker.java33 * {@link #check(Certificate, Collection) check} method will be called for each
107 * if check(s) fail on the specified certificate.
109 public abstract void check(Certificate cert, Collection<String> unresolvedCritExts) method in class:PKIXCertPathChecker
/libcore/luni/src/main/java/java/util/zip/
H A DCheckedInputStream.java32 private final Checksum check; field in class:CheckedInputStream
49 check = csum;
65 check.update(x);
84 check.update(buffer, byteOffset, bytesRead);
93 return check;
H A DCheckedOutputStream.java31 private final Checksum check; field in class:CheckedOutputStream
45 check = cs;
54 return check;
69 check.update(val);
89 check.update(buf, off, nbytes);
/libcore/support/src/test/java/tests/security/
H A DKeyFactoryTest.java60 check(new KeyPair(publicKey, privateKey));
63 protected void check(KeyPair keyPair) {} method in class:KeyFactoryTest
/libcore/luni/src/test/java/tests/security/cert/
H A DPKIXCertPathCheckerTest.java79 pc.check(new MyCertificate("", null), new HashSet<String>());
89 public void check(Certificate cert, method in class:PKIXCertPathCheckerTest.MyPKIXCertPathChecker
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DConstructorTest.java82 public int check() { method in class:ConstructorTest.ConstructorTestHelper
386 assertEquals("improper instance created", 99, test.check());
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java55 private final void check(boolean close) throws IOException { method in class:KXmlSerializer
169 check(false);
274 check(false);
368 check(false);
472 check(false);
477 check();
497 check(true);
534 check(false);
547 check(false);
568 check(fals
[all...]
/libcore/jsr166-tests/src/test/java/jsr166/
H A DConcurrentSkipListSetTest.java673 check(set, 0, setSize - 1, true, bs);
674 check(set.descendingSet(), 0, setSize - 1, false, bs);
677 check(set, 0, setSize - 1, true, bs);
678 check(set.descendingSet(), 0, setSize - 1, false, bs);
779 check(set, min, max, ascending, bs);
780 check(set.descendingSet(), min, max, !ascending, bs);
783 check(set, min, max, ascending, bs);
784 check(set.descendingSet(), min, max, !ascending, bs);
858 void check(NavigableSet<Integer> set, method in class:ConcurrentSkipListSetTest
H A DTreeMapTest.java776 check(map, 0, mapSize - 1, true);
777 check(map.descendingMap(), 0, mapSize - 1, false);
780 check(map, 0, mapSize - 1, true);
781 check(map.descendingMap(), 0, mapSize - 1, false);
870 check(map, min, max, ascending);
871 check(map.descendingMap(), min, max, !ascending);
874 check(map, min, max, ascending);
875 check(map.descendingMap(), min, max, !ascending);
949 void check(NavigableMap<Integer, Integer> map, method in class:TreeMapTest
H A DTreeSetTest.java679 check(set, 0, setSize - 1, true);
680 check(set.descendingSet(), 0, setSize - 1, false);
683 check(set, 0, setSize - 1, true);
684 check(set.descendingSet(), 0, setSize - 1, false);
783 check(set, min, max, ascending);
784 check(set.descendingSet(), min, max, !ascending);
787 check(set, min, max, ascending);
788 check(set.descendingSet(), min, max, !ascending);
862 void check(NavigableSet<Integer> set, method in class:TreeSetTest
H A DConcurrentSkipListMapTest.java971 check(map, 0, mapSize - 1, true);
972 check(map.descendingMap(), 0, mapSize - 1, false);
975 check(map, 0, mapSize - 1, true);
976 check(map.descendingMap(), 0, mapSize - 1, false);
1065 check(map, min, max, ascending);
1066 check(map.descendingMap(), min, max, !ascending);
1069 check(map, min, max, ascending);
1070 check(map.descendingMap(), min, max, !ascending);
1144 void check(NavigableMap<Integer, Integer> map, method in class:ConcurrentSkipListMapTest
/libcore/luni/src/main/java/java/text/
H A DSimpleDateFormat.java1301 private static String convertPattern(String template, String fromChars, String toChars, boolean check) { argument
1302 if (!check && fromChars.equals(toChars)) {
1316 } else if (check && !quote && ((next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentHashMap.java270 * is around 13%, meaning that only about 1 in 8 puts check
548 * equivalent check), thus ensuring that any index argument taking
1571 * @param check if <0, don't check resize, if <= 1 only check if uncontended
1573 private final void addCount(long x, int check) { argument
1587 if (check <= 1)
1591 if (check >= 0) {
2402 * Recursive invariant check
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 503 milliseconds