Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java186 public <U> CompletionStage<U> thenApplyAsync in thenApplyAsync() method
203 public <U> CompletionStage<U> thenApplyAsync in thenApplyAsync() method
DCompletableFuture.java2012 public <U> CompletableFuture<U> thenApplyAsync( in thenApplyAsync() method in CompletableFuture
2017 public <U> CompletableFuture<U> thenApplyAsync( in thenApplyAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java667 return f.thenApplyAsync(a);
740 return f.thenApplyAsync(a, new ThreadExecutor());
3219 () -> f.thenApplyAsync(null), in testNPE()
3220 () -> f.thenApplyAsync((x) -> x, null), in testNPE()
3221 () -> f.thenApplyAsync(null, exec), in testNPE()