Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java548 public CompletionStage<Void> acceptEitherAsync in acceptEitherAsync() method
567 public CompletionStage<Void> acceptEitherAsync in acceptEitherAsync() method
DCompletableFuture.java2121 public CompletableFuture<Void> acceptEitherAsync( in acceptEitherAsync() method in CompletableFuture
2126 public CompletableFuture<Void> acceptEitherAsync( in acceptEitherAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java710 return f.acceptEitherAsync(g, a);
783 return f.acceptEitherAsync(g, a, new ThreadExecutor());
3266 () -> f.acceptEitherAsync(g, null), in testNPE()
3267 () -> f.acceptEitherAsync(g, null, exec), in testNPE()
3269 () -> f.acceptEitherAsync(nullFuture, (x) -> {}), in testNPE()
3270 () -> f.acceptEitherAsync(nullFuture, (x) -> {}, exec), in testNPE()
3271 () -> f.acceptEitherAsync(g, (x) -> {}, null), in testNPE()