Home
last modified time | relevance | path

Searched refs:thenCombine (Results 1 – 8 of 8) sorted by relevance

/packages/services/Car/car-lib/src/android/car/util/concurrent/
DAndroidFuture.java408 public <U, V> AndroidFuture<V> thenCombine( in thenCombine() method in AndroidFuture
415 public AndroidFuture<T> thenCombine(@NonNull CompletionStage<Void> other) { in thenCombine() method in AndroidFuture
416 return thenCombine(other, (res, aVoid) -> res); in thenCombine()
/packages/services/Car/tests/carservice_unit_test/src/android/car/util/concurrent/
DAndroidFutureTest.java314 nearFuture.thenCombine(farFuture, ((s1, s2) -> s1 + s2)); in testThenCombine()
330 AndroidFuture<String> combinedFuture = nearFuture.thenCombine(farFuture, throwingFunction); in testThenCombine_functionThrowingException()
/packages/services/Car/tests/carservice_unit_test/res/raw/
Dcar_hidden_apis_release_33.2.txt719 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…
720 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
Dcar_hidden_apis_release_33.1.txt710 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…
711 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
Dcar_hidden_apis.txt766 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
774 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…
Dcar_hidden_apis_release_33.3.txt805 android.car.util.concurrent AndroidFuture AndroidFuture<V> thenCombine(CompletionStage<? extends U>…
806 android.car.util.concurrent AndroidFuture AndroidFuture<T> thenCombine(CompletionStage<Void> other)
/packages/services/Car/tools/GenericCarApiBuilder/
Dcomplete_car_api_list.txt2203 …method TIRAMISU_0 AndroidFuture<V> thenCombine(CompletionStage<? extends U> other, BiFunction<? su…
2204 method TIRAMISU_0 AndroidFuture<T> thenCombine(CompletionStage<Void> other);
/packages/services/Telecomm/src/com/android/server/telecom/
DCallsManager.java2150 makeRoomForCall.thenCombine(suggestionFuture, Pair::create); in startOutgoingCall()