Home
last modified time | relevance | path

Searched refs:thenAcceptBothAsync (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java387 public <U> CompletionStage<Void> thenAcceptBothAsync in thenAcceptBothAsync() method
407 public <U> CompletionStage<Void> thenAcceptBothAsync in thenAcceptBothAsync() method
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java96 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/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java692 return f.thenAcceptBothAsync(g, a);
765 return f.thenAcceptBothAsync(g, a, new ThreadExecutor());
3242 () -> f.thenAcceptBothAsync(g, null), in testNPE()
3243 () -> f.thenAcceptBothAsync(g, null, exec), in testNPE()
3245 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}), in testNPE()
3246 () -> f.thenAcceptBothAsync(nullFuture, (x, y) -> {}, exec), in testNPE()
3247 () -> f.thenAcceptBothAsync(g, (x, y) -> {}, null), in testNPE()