Searched refs:thenCombine (Results 1 – 8 of 8) sorted by relevance
408 public <U, V> AndroidFuture<V> thenCombine( in thenCombine() method in AndroidFuture415 public AndroidFuture<T> thenCombine(@NonNull CompletionStage<Void> other) { in thenCombine() method in AndroidFuture416 return thenCombine(other, (res, aVoid) -> res); in thenCombine()
314 nearFuture.thenCombine(farFuture, ((s1, s2) -> s1 + s2)); in testThenCombine()330 AndroidFuture<String> combinedFuture = nearFuture.thenCombine(farFuture, throwingFunction); in testThenCombine_functionThrowingException()
719 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…720 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
710 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…711 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
766 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)774 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…
805 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…806 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
2203 …method TIRAMISU_0 AndroidFuture<V> thenCombine(CompletionStage<? extends U> other, BiFunction<? su…2204 method TIRAMISU_0 AndroidFuture<T> thenCombine(CompletionStage<Void> other);
2150 makeRoomForCall.thenCombine(suggestionFuture, Pair::create); in startOutgoingCall()