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

/libcore/luni/src/main/java/java/util/concurrent/
H A DCompletionStage.java115 * such effects, as appropriate. Method {@link #toCompletableFuture}
838 public CompletableFuture<T> toCompletableFuture(); method in interface:CompletionStage
H A DCompletableFuture.java957 CompletableFuture<T> g = f.apply(s).toCompletableFuture();
987 CompletableFuture<V> g = f.apply(t).toCompletableFuture();
1123 if (f == null || (b = o.toCompletableFuture()) == null)
1195 if (f == null || (b = o.toCompletableFuture()) == null)
1254 if (f == null || (b = o.toCompletableFuture()) == null)
1395 if (f == null || (b = o.toCompletableFuture()) == null)
1459 if (f == null || (b = o.toCompletableFuture()) == null)
1517 if (f == null || (b = o.toCompletableFuture()) == null)
2170 public CompletableFuture<T> toCompletableFuture() { method in class:CompletableFuture
/libcore/jsr166-tests/src/test/java/jsr166/
H A DCompletableFutureTest.java3318 * toCompletableFuture returns this CompletableFuture.
3322 assertSame(f, f.toCompletableFuture());
3950 // return stage.toCompletableFuture().copy().join();
3954 // return stage.toCompletableFuture().copy().isDone();

Completed in 72 milliseconds