/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 387 public <U> CompletionStage<Void> thenAcceptBothAsync in thenAcceptBothAsync() method 407 public <U> CompletionStage<Void> thenAcceptBothAsync in thenAcceptBothAsync() method
|
D | CompletableFuture.java | 2207 public <U> CompletableFuture<Void> thenAcceptBothAsync( in thenAcceptBothAsync() method in CompletableFuture 2213 public <U> CompletableFuture<Void> thenAcceptBothAsync( in thenAcceptBothAsync() method in CompletableFuture
|
/libcore/ojluni/annotations/mmodule/java/util/concurrent/ |
D | CompletableFuture.annotated.java | 96 public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBothAsync(java.util.con… in thenAcceptBothAsync() method in CompletableFuture 98 public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBothAsync(java.util.con… in thenAcceptBothAsync() method in CompletableFuture
|
/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | CompletionStageTest.java | 160 public <U> CompletionStage<Void> thenAcceptBothAsync(CompletionStage<? extends U> other, in thenAcceptBothAsync() method in CompletionStageTest.BaseStage 165 public <U> CompletionStage<Void> thenAcceptBothAsync(CompletionStage<? extends U> other, in thenAcceptBothAsync() method in CompletionStageTest.BaseStage
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | CompletableFutureTest.java | 768 return f.thenAcceptBothAsync(g, a); 852 return f.thenAcceptBothAsync(g, a, new ThreadExecutor()); 3508 () -> f.thenAcceptBothAsync(g, null), in testNPE() 3509 () -> f.thenAcceptBothAsync(g, null, exec), in testNPE() 3511 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}), in testNPE() 3512 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}, exec), in testNPE() 3513 () -> f.thenAcceptBothAsync(g, (x, y) -> {}, null), in testNPE() 3605 fs.add(src.thenAcceptBothAsync(src, (x, y) -> {}, e)); in testRejectingExecutor() 3631 fs.add(complete.thenAcceptBothAsync(incomplete, (x, y) -> {}, e)); in testRejectingExecutor() 3632 fs.add(incomplete.thenAcceptBothAsync(complete, (x, y) -> {}, e)); in testRejectingExecutor() [all …]
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 700 return f.thenAcceptBothAsync(g, a); 773 return f.thenAcceptBothAsync(g, a, new ThreadExecutor()); 3250 () -> f.thenAcceptBothAsync(g, null), in testNPE() 3251 () -> f.thenAcceptBothAsync(g, null, exec), in testNPE() 3253 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}), in testNPE() 3254 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}, exec), in testNPE() 3255 () -> f.thenAcceptBothAsync(g, (x, y) -> {}, null), in testNPE()
|
/libcore/api/ |
D | current.txt | 15447 …method public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBothAsync(java.… 15448 …method public <U> java.util.concurrent.CompletableFuture<java.lang.Void> thenAcceptBothAsync(java.… 15511 …method public <U> java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptBothAsync(java.ut… 15512 …method public <U> java.util.concurrent.CompletionStage<java.lang.Void> thenAcceptBothAsync(java.ut…
|