Searched refs:applyToEitherAsync (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/concurrent/
H A DCompletionStage.java463 public <U> CompletionStage<U> applyToEitherAsync method in interface:CompletionStage
483 public <U> CompletionStage<U> applyToEitherAsync method in interface:CompletionStage
H A DCompletableFuture.java2076 public <U> CompletableFuture<U> applyToEitherAsync( method in class:CompletableFuture
2081 public <U> CompletableFuture<U> applyToEitherAsync( method in class:CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCompletableFutureTest.java716 return f.applyToEitherAsync(g, a);
789 return f.applyToEitherAsync(g, a, new ThreadExecutor());
3258 () -> f.applyToEitherAsync(g, null),
3259 () -> f.applyToEitherAsync(g, null, exec),
3261 () -> f.applyToEitherAsync(nullFuture, (x) -> x),
3262 () -> f.applyToEitherAsync(nullFuture, (x) -> x, exec),
3263 () -> f.applyToEitherAsync(g, (x) -> x, null),

Completed in 37 milliseconds