/libcore/jsr166-tests/src/test/java/jsr166/ |
D | Collection8Test.java | 53 final ArrayList found = new ArrayList(); in testForEach() local 54 Consumer<Object> spy = (o) -> { found.add(o); }; in testForEach() 56 assertTrue(found.isEmpty()); in testForEach() 60 assertEquals(Collections.singletonList(x), found); in testForEach() local 61 found.clear(); in testForEach() 65 assertEquals(2, found.size()); in testForEach() 66 assertTrue(found.contains(x)); in testForEach() 67 assertTrue(found.contains(y)); in testForEach() 68 found.clear(); in testForEach() 72 assertTrue(found.isEmpty()); in testForEach()
|
/libcore/ojluni/src/main/java/javax/crypto/spec/ |
D | DESKeySpec.java | 228 boolean found = true; in isWeak() 229 for (int j = 0; j < DES_KEY_LEN && found == true; j++) { in isWeak() 231 found = false; in isWeak() 234 if (found == true) { in isWeak() 235 return found; in isWeak()
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
D | LanguageTag.java | 234 boolean found = false; in parseLanguage() 238 found = true; in parseLanguage() 244 return found; in parseLanguage() 252 boolean found = false; in parseExtlangs() 259 found = true; in parseExtlangs() 273 return found; in parseExtlangs() 281 boolean found = false; in parseScript() 285 found = true; in parseScript() 291 return found; in parseScript() 299 boolean found = false; in parseRegion() [all …]
|
/libcore/ojluni/src/test/java/io/Writer/ |
D | Append.java | 68 boolean found = false; in test() 71 found = true; in test() 76 if (found && !io) in test() 78 if (!found && io) in test()
|
/libcore/ |
D | check-ojluni-files | 33 echo 'No differences found' 35 echo 'Differences found'
|
/libcore/benchmarks/ |
D | README.md | 5 - Vogar source codes can be found at `external/vogar`. 28 The source code of the tests can be found at `src/benchmarks/` 31 Docs about Jetpack Benchmark can be found at 44 The source code of the tests can be found at `src_androidx/libcore/benchmark/`
|
/libcore/support/src/test/java/libcore/java/security/ |
D | TestKeyStore.java | 831 PrivateKeyEntry found = null; in privateKey() local 845 if (found != null) { in privateKey() 849 + "\nfirst: " + found.getPrivateKey() in privateKey() 852 found = privateKey; in privateKey() 854 if (found == null) { in privateKey() 859 return found; in privateKey() 887 Certificate found = null; in issuer() local 902 if (found != null) { in issuer() 905 + "\nfirst: " + found in issuer() 908 found = certificate; in issuer() [all …]
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | Collection8Test.java | 655 final ArrayList found = new ArrayList(); 656 Consumer<Object> spy = o -> found.add(o); 658 assertTrue(found.isEmpty()); 662 assertEquals(Collections.singletonList(x), found); 663 found.clear(); 667 assertEquals(2, found.size()); 668 assertTrue(found.contains(x)); 669 assertTrue(found.contains(y)); 670 found.clear(); 674 assertTrue(found.isEmpty()); [all …]
|
/libcore/ojluni/src/test/java/lang/StackWalker/ |
D | VerifyStackTrace.java | 282 boolean found; // stop recording after main field in VerifyStackTrace.Recorder 284 if (found) return; in recordSTE() 285 found = VerifyStackTrace.class.equals(f.getDeclaringClass()) && in recordSTE() 321 System.out.println("Main found: " + recorder.found); in test()
|
D | Basic.java | 73 … List<String> found = ((ConstructorNewInstance)ConstructorNewInstance.class.getMethod("create") in testWalkFromConstructor() local 78 found); in testWalkFromConstructor() local
|
/libcore/luni/src/test/java/libcore/java/text/ |
D | BreakIteratorTest.java | 37 boolean found = false; in testGetAvailableLocales() 41 found = true; in testGetAvailableLocales() 44 assertTrue("At least locale " + Locale.US + " must be presented", found); in testGetAvailableLocales()
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
D | TestSSLContext.java | 333 boolean found = false; in assertCertificateInKeyStore() 340 found = true; in assertCertificateInKeyStore() 344 assertTrue(found); in assertCertificateInKeyStore() 349 boolean found = false; in assertCertificateInKeyStore() 356 found = true; in assertCertificateInKeyStore() 360 assertTrue(found); in assertCertificateInKeyStore()
|
/libcore/ojluni/src/main/java/java/security/cert/ |
D | X509CRLSelector.java | 606 boolean found = false; in match() 607 while (!found && i.hasNext()) { in match() 609 found = true; in match() 612 if (!found) { in match()
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
D | README | 1 Most tests for javax.crypto can be found in external/conscrypt. They
|
/libcore/luni/src/test/java/libcore/java/security/ |
D | README | 1 Most tests for java.security can be found in external/conscrypt. They
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
D | README | 1 Most tests for javax.net.ssl can be found in external/conscrypt. They
|
/libcore/luni/src/test/java/libcore/javax/crypto/spec/ |
D | README | 1 Most tests for javax.crypto.spec can be found in external/conscrypt.
|
/libcore/ojluni/src/main/java/java/nio/file/spi/ |
D | FileSystemProvider.java | 124 boolean found = false; in loadInstalledProviders() 127 found = true; in loadInstalledProviders() 131 if (!found) { in loadInstalledProviders()
|
/libcore/ojluni/src/test/java/util/Collection/ |
D | BiggernYours.java | 67 boolean found = false; in compareCollections() 70 found = true; in compareCollections() 75 if (!found) { in compareCollections()
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | AbstractZipFileTest.java | 71 boolean found; in replaceBytes() 73 found = false; in replaceBytes() 75 found = true; in replaceBytes() 78 found = false; in replaceBytes() 83 if (found) { in replaceBytes()
|
/libcore/metrictests/memory/apps/src/libcore/heapdumper/ |
D | Actions.java | 77 boolean found = m.find(); in run()
|
/libcore/ojluni/src/main/java/java/net/ |
D | NetworkInterface.java | 747 boolean found = false; in equals() 750 found = true; in equals() 754 if (!found) { in equals()
|
/libcore/ojluni/src/main/java/java/util/regex/ |
D | Matcher.java | 1387 boolean found = find(); in results() 1389 if (found && state < 0) in results() 1391 state = found ? 1 : 0; in results() 1393 return found; in results()
|
/libcore/ojluni/src/main/java/sun/net/www/ |
D | MessageHeader.java | 152 boolean found = false; in filterNTLMResponses() 157 found = true; in filterNTLMResponses() 161 if (found) { in filterNTLMResponses()
|
/libcore/luni/src/main/native/ |
D | org_apache_harmony_xml_ExpatParser.cpp | 381 jstring found = findInternedString(bucket, s, hash); in internString() local 382 if (found) { in internString() 384 return found; in internString() 1178 int found = -1; in ExpatAttributes_getIndexForQName() local 1181 found = index; in ExpatAttributes_getIndexForQName() 1186 return found; in ExpatAttributes_getIndexForQName()
|