Home
last modified time | relevance | path

Searched refs:applyToEitherAsync (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/concurrent/
DCompletionStage.java492 public <U> CompletionStage<U> applyToEitherAsync in applyToEitherAsync() method
512 public <U> CompletionStage<U> applyToEitherAsync in applyToEitherAsync() method
DCompletableFuture.java2107 public <U> CompletableFuture<U> applyToEitherAsync( in applyToEitherAsync() method in CompletableFuture
2112 public <U> CompletableFuture<U> applyToEitherAsync( in applyToEitherAsync() method in CompletableFuture
/libcore/ojluni/annotations/mmodule/java/util/concurrent/
DCompletableFuture.annotated.java108 public <U> java.util.concurrent.CompletableFuture<U> applyToEitherAsync(java.util.concurrent.Comple… in applyToEitherAsync() method in CompletableFuture
110 public <U> java.util.concurrent.CompletableFuture<U> applyToEitherAsync(java.util.concurrent.Comple… in applyToEitherAsync() method in CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
DCompletableFutureTest.java716 return f.applyToEitherAsync(g, a);
789 return f.applyToEitherAsync(g, a, new ThreadExecutor());
3258 () -> f.applyToEitherAsync(g, null), in testNPE()
3259 () -> f.applyToEitherAsync(g, null, exec), in testNPE()
3261 () -> f.applyToEitherAsync(nullFuture, (x) -> x), in testNPE()
3262 () -> f.applyToEitherAsync(nullFuture, (x) -> x, exec), in testNPE()
3263 () -> f.applyToEitherAsync(g, (x) -> x, null), in testNPE()