Searched refs:thenApply (Results 1 – 7 of 7) sorted by relevance
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CompletableFutureTest.java | 599 public <T,U> CompletableFuture<U> thenApply 601 return f.thenApply(a); 673 public <T,U> CompletableFuture<U> thenApply 746 public <T,U> CompletableFuture<U> thenApply 808 public abstract <T,U> CompletableFuture<U> thenApply 1414 final CompletableFuture<Integer> h0 = m.thenApply(f, rs[0]); in testThenApply_normalCompletion() 1419 final CompletableFuture<Integer> h2 = m.thenApply(f, rs[2]); in testThenApply_normalCompletion() 1442 final CompletableFuture<Integer> h0 = m.thenApply(f, rs[0]); in testThenApply_exceptionalCompletion() 1445 final CompletableFuture<Integer> h2 = m.thenApply(f, rs[2]); in testThenApply_exceptionalCompletion() 1467 final CompletableFuture<Integer> h0 = m.thenApply(f, rs[0]); in testThenApply_sourceCancelled() [all …]
|
/libcore/ojluni/src/test/java/util/concurrent/tck/ |
D | CompletableFutureTest.java | 659 public <T,U> CompletableFuture<U> thenApply 661 return f.thenApply(a); 741 public <T,U> CompletableFuture<U> thenApply 825 public <T,U> CompletableFuture<U> thenApply 897 public abstract <T,U> CompletableFuture<U> thenApply 1537 final CompletableFuture<Item> h0 = m.thenApply(f, rs[0]); in testThenApply_normalCompletion() 1542 final CompletableFuture<Item> h2 = m.thenApply(f, rs[2]); in testThenApply_normalCompletion() 1565 final CompletableFuture<Item> h0 = m.thenApply(f, rs[0]); in testThenApply_exceptionalCompletion() 1568 final CompletableFuture<Item> h2 = m.thenApply(f, rs[2]); in testThenApply_exceptionalCompletion() 1590 final CompletableFuture<Item> h0 = m.thenApply(f, rs[0]); in testThenApply_sourceCancelled() [all …]
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | CompletionStage.java | 170 public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn); in thenApply() method
|
D | CompletableFuture.java | 2142 public <U> CompletableFuture<U> thenApply( in thenApply() method in CompletableFuture
|
/libcore/ojluni/annotations/mmodule/java/util/concurrent/ |
D | CompletableFuture.annotated.java | 70 public <U> java.util.concurrent.CompletableFuture<U> thenApply(java.util.function.Function<? super … in thenApply() method in CompletableFuture
|
/libcore/luni/src/test/java/libcore/java/util/concurrent/ |
D | CompletionStageTest.java | 100 public <U> CompletionStage<U> thenApply(Function<? super T,? extends U> fn) { in thenApply() method in CompletionStageTest.BaseStage
|
/libcore/api/ |
D | current.txt | 15449 …method public <U> java.util.concurrent.CompletableFuture<U> thenApply(java.util.function.Function<… 15513 …method public <U> java.util.concurrent.CompletionStage<U> thenApply(java.util.function.Function<? …
|