Home
last modified time | relevance | path

Searched defs:snd (Results 1 – 4 of 4) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java1615 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_normalCompletion() local
1662 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_exceptionalCompletion() local
1705 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_sourceCancelled() local
1747 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_actionFailed() local
1784 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_normalCompletion() local
1826 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_exceptionalCompletion() local
1869 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_sourceCancelled() local
1911 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_actionFailed() local
1948 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testRunAfterBoth_normalCompletion() local
1990 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testRunAfterBoth_exceptionalCompletion() local
[all …]
/libcore/ojluni/src/test/java/util/concurrent/tck/
DCompletableFutureTest.java1678 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_normalCompletion() local
1725 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_exceptionalCompletion() local
1768 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_sourceCancelled() local
1810 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenCombine_actionFailed() local
1847 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_normalCompletion() local
1889 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_exceptionalCompletion() local
1932 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_sourceCancelled() local
1974 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testThenAcceptBoth_actionFailed() local
2011 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testRunAfterBoth_normalCompletion() local
2053 final CompletableFuture<Integer> snd = !fFirst ? f : g; in testRunAfterBoth_exceptionalCompletion() local
[all …]
/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletableFuture.java1043 CompletableFuture<U> snd; // second source for action field in CompletableFuture.BiCompletion
1045 CompletableFuture<T> src, CompletableFuture<U> snd) { in BiCompletion()
1098 CompletableFuture<T> src, CompletableFuture<U> snd, in BiApply()
1169 CompletableFuture<T> src, CompletableFuture<U> snd, in BiAccept()
1242 CompletableFuture<U> snd, in BiRun()
1300 CompletableFuture<U> snd) { in BiRelay()
1378 CompletableFuture<U> snd, in OrApply()
1442 CompletableFuture<U> snd, in OrAccept()
1506 CompletableFuture<U> snd, in OrRun()
1562 CompletableFuture<U> snd) { in OrRelay()
/libcore/ojluni/src/main/java/java/math/
DBigDecimal.java4493 private static BigDecimal add(final long xs, int scale1, BigInteger snd, int scale2) { in add()
4517 private static BigDecimal add(BigInteger fst, int scale1, BigInteger snd, int scale2) { in add()