Searched refs:thenAcceptBoth (Results 1 – 3 of 3) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 339 public <U> CompletionStage<Void> thenAcceptBoth in thenAcceptBoth() method
|
D | CompletableFuture.java | 2037 public <U> CompletableFuture<Void> thenAcceptBoth( in thenAcceptBoth() method in CompletableFuture
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 614 public <T,U> CompletableFuture<Void> thenAcceptBoth 618 return f.thenAcceptBoth(g, a); 688 public <T,U> CompletableFuture<Void> thenAcceptBoth 761 public <T,U> CompletableFuture<Void> thenAcceptBoth 813 public abstract <T,U> CompletableFuture<Void> thenAcceptBoth 1788 final CompletableFuture<Void> h1 = m.thenAcceptBoth(f, g, r1); in testThenAcceptBoth_normalCompletion() 1790 final CompletableFuture<Void> h2 = m.thenAcceptBoth(f, g, r2); in testThenAcceptBoth_normalCompletion() 1796 final CompletableFuture<Void> h3 = m.thenAcceptBoth(f, g, r3); in testThenAcceptBoth_normalCompletion() 1834 final CompletableFuture<Void> h1 = m.thenAcceptBoth(f, g, r1); in testThenAcceptBoth_exceptionalCompletion() 1836 final CompletableFuture<Void> h2 = m.thenAcceptBoth(f, g, r2); in testThenAcceptBoth_exceptionalCompletion() [all …]
|