Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java328 public <U,V> CompletionStage<V> thenCombineAsync in thenCombineAsync() method
349 public <U,V> CompletionStage<V> thenCombineAsync in thenCombineAsync() method
DCompletableFuture.java2054 public <U,V> CompletableFuture<V> thenCombineAsync( in thenCombineAsync() method in CompletableFuture
2060 public <U,V> CompletableFuture<V> thenCombineAsync( in thenCombineAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java698 return f.thenCombineAsync(g, a);
771 return f.thenCombineAsync(g, a, new ThreadExecutor());
3234 () -> f.thenCombineAsync(g, null), in testNPE()
3235 () -> f.thenCombineAsync(g, null, exec), in testNPE()
3237 () -> f.thenCombineAsync(nullFuture, (x, y) -> x), in testNPE()
3238 () -> f.thenCombineAsync(nullFuture, (x, y) -> x, exec), in testNPE()
3239 () -> f.thenCombineAsync(g, (x, y) -> x, null), in testNPE()