Home
last modified time | relevance | path

Searched refs:results (Results 1 – 14 of 14) sorted by relevance

/libcore/ojluni/src/test/java/util/concurrent/tck/
DExecutorCompletionService9Test.java100 ArrayList<Integer> results; field in ExecutorCompletionService9Test
103 if (results == null) results = new ArrayList<Integer>(); in use()
104 results.add(x); in use()
112 results = null; in testSolveAll()
120 results.sort(Comparator.naturalOrder()); in testSolveAll()
121 assertEquals(List.of(1, 2, 3), results); in testSolveAll()
129 results = null; in testSolveAny()
136 assertEquals(1, results.size()); in testSolveAny()
137 Integer elt = results.get(0); in testSolveAny()
/libcore/luni/src/test/java/libcore/java/lang/
DOldStringTest.java175 String [] results = {"!\'123123.123?ello?orld!123123?ello?orld#", in test_replaceAll() local
181 results[i], str.replaceAll(patterns[i], "?")); in test_replaceAll()
198 String [] results = {"!'123123.123?elloWorld!123123helloworld#", in test_replaceFirst() local
204 results[i], str.replaceFirst(patterns[i], "?")); in test_replaceFirst()
219 String [][] results = {{"", "'","23", "23", "", "23HelloWorld", "", "23", in test_splitLString() local
225 patterns[i], Arrays.equals(results[i], str.split(patterns[i]))); in test_splitLString()
240 String [][] results = {{"", "'","23", "23.123HelloWorld!123123helloworld#"}, in test_splitLStringLint() local
245 Arrays.equals(results[0], str.split(pattern, 4))); in test_splitLStringLint()
247 Arrays.equals(results[1], str.split(pattern, 9))); in test_splitLStringLint()
249 Arrays.equals(results[1], str.split(pattern, 0))); in test_splitLStringLint()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DSupport_Format.java59 Vector<FieldContainer> results = findFields(format.formatToCharacterIterator(object)); in t_Format() local
63 " results=" + results, expectedResults.size(), results.size()); in t_Format()
64 for (int i = 0; i < results.size(); ++i) { in t_Format()
65 if (!results.contains(expectedResults.get(i))) { in t_Format()
68 " results=" + results); in t_Format()
/libcore/ojluni/src/main/java/java/security/
DUnresolvedPermissionCollection.java121 List<Permission> results = in elements() local
128 results.addAll(l); in elements()
133 return Collections.enumeration(results); in elements()
/libcore/luni/src/test/java/tests/com/android/org/bouncycastle/jce/provider/
DCertBlocklistTest.java156 Set<String> results = new HashSet<String>(); in getPubkeyBlocklist() local
158 results.add(new String(value)); in getPubkeyBlocklist()
160 return results; in getPubkeyBlocklist()
169 Set<String> results = new HashSet<String>(); in getSerialBlocklist() local
171 results.add(value.toString(16)); in getSerialBlocklist()
173 return results; in getSerialBlocklist()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
DSplitTest.java36 String[] results = p.split("have/you/done/it/right"); in testSimple() local
38 assertArraysEqual(expected, results); in testSimple()
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DDistributionPointFetcher.java117 Set<X509CRL> results = new HashSet<>(); in getCRLs() local
124 results.addAll(crls); in getCRLs()
127 debug.println("Returning " + results.size() + " CRLs"); in getCRLs()
129 return results; in getCRLs()
DRevocationChecker.java830 Set<X509CRL> results = new HashSet<>();
838 results.add(crl);
844 return results;
/libcore/luni/src/test/java/libcore/java/net/
DInetSocketAddressTest.java48 String[] results = { in test_ConstructorLInetAddressI() local
/libcore/tools/docs/crypto/
DREADME11 all-uppercase versions, but this produces substandard results in some cases
/libcore/support/src/test/java/tests/resources/
Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/ ...
/libcore/luni/src/test/java/libcore/java/sql/
DOldStatementTest.java225 boolean[] results = {false, false, false, false, false, true, false, in testExecute()
233 assertEquals("different result for statement no. "+i, results[i], res); in testExecute()
/libcore/ojluni/src/main/java/java/math/
DBigInteger.java4014 BigInteger[] results;
4015 results = u.divideAndRemainder(v);
4020 toString(results[0], sb, radix, digits-expectedDigits);
4021 toString(results[1], sb, radix, expectedDigits);
/libcore/expectations/
Dknownfailures.txt53 description: "Package.getPackages(), ClassLoader.getPackages() both omit results",