Home
last modified time | relevance | path

Searched refs:debounce (Results 1 – 25 of 28) sorted by relevance

12

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/operators/
DDebounceTest.kt31 val result = flow.debounce(1000).toList() in <lambda>()
38 val flow = flowOf<Int?>(null).debounce(Long.MAX_VALUE) in <lambda>()
60 val result = flow.debounce(1000).toList() in <lambda>()
67 val flow = emptyFlow<Int>().debounce(Long.MAX_VALUE) in <lambda>()
73 val flow = flowOf(1, 2, 3).debounce(1000) in <lambda>()
92 }.debounce(100) in <lambda>()
112 }.debounce(1).map { in testUpstreamError()
131 }.flowOn(NamedDispatchers("upstream")).debounce(1).map { in <lambda>()
147 }.debounce(Long.MAX_VALUE).map { in <lambda>()
161 }.flowOn(NamedDispatchers("source")).debounce(Long.MAX_VALUE).map { in <lambda>()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DDelay.kt66 public fun <T> Flow<T>.debounce(timeoutMillis: Long): Flow<T> { in <lambda>() method
117 public fun <T> Flow<T>.debounce(timeoutMillis: (T) -> Long): Flow<T> = in debounce() method
154 public fun <T> Flow<T>.debounce(timeout: Duration): Flow<T> = in debounce() method
155 debounce(timeout.toDelayMillis()) in debounce()
204 public fun <T> Flow<T>.debounce(timeout: (T) -> Duration): Flow<T> = in debounce() method
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Ddebounce.cpp21 return xs | rxo::debounce(so, milliseconds(10)); in __anon12a5ca2f0102()
58 return xs.debounce(milliseconds(10), so); in __anon12a5ca2f0202()
100 return xs.debounce(milliseconds(10), so); in __anon12a5ca2f0302()
148 return xs.debounce(milliseconds(30), so); in __anon12a5ca2f0402()
191 return xs.debounce(milliseconds(10), so); in __anon12a5ca2f0502()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-debounce.hpp44 struct debounce struct
64 debounce(duration_type period, coordination_type coordination) in debounce() function
213 auto debounce(AN&&... an) in debounce() function
228 … class Debounce = rxo::detail::debounce<SourceValue, rxu::decay_t<Duration>, identity_one_worker>>
240 …class Debounce = rxo::detail::debounce<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordinat…
252 …class Debounce = rxo::detail::debounce<SourceValue, rxu::decay_t<Duration>, rxu::decay_t<Coordinat…
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/src/time/
DTime.kt24 public fun <T> Flow<T>.debounce(timeout: Duration): Flow<T> = debounce(timeout.coerceToMillis()) in delay() method
/external/perfetto/ui/src/frontend/
Drate_limiters.ts32 export function debounce(f: Function, ms: number): Function { function
Dheap_profile_panel.ts31 import {debounce} from './rate_limiters';
69 private updateFocusRegexDebounced = debounce(() => {
Dfrontend_local_state.ts28 import {debounce, ratelimit} from './rate_limiters';
227 private setOmniboxDebounced = debounce(() => {
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/examples/
Dexample-delay-01.kt23 }.debounce(1000) in <lambda>()
Dexample-delay-02.kt23 }.debounce { in <lambda>()
Dexample-delay-duration-01.kt25 }.debounce(1000.milliseconds) in <lambda>()
Dexample-delay-duration-02.kt25 }.debounce { in <lambda>()
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
Ddebounce.cpp14 debounce(period);
/external/arm-trusted-firmware/plat/rockchip/rk3399/drivers/gpio/
Drk3399_gpio.c36 uint32_t debounce; member
350 store_gpio[i - 2].debounce = in plat_rockchip_save_gpio()
401 store_gpio[i - 2].debounce); in plat_rockchip_restore_gpio()
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/test/time/
DFlowDebounceTest.kt34 val result = flow.debounce(Duration.ofMillis(1000)).toList() in <lambda>()
/external/pigweed/pw_watch/py/
DBUILD.gn23 "pw_watch/debounce.py",
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/api/
Dkotlinx-coroutines-jdk8.api15 …public static final fun debounce (Lkotlinx/coroutines/flow/Flow;Ljava/time/Duration;)Lkotlinx/coro…
/external/Reactive-Extensions/RxCpp/projects/doxygen/
DCMakeLists.txt58 ${DOXY_EXAMPLES_SRC_DIR}/debounce.cpp
/external/Reactive-Extensions/RxCpp/Rx/v2/test/
DCMakeLists.txt41 ${TEST_DIR}/operators/debounce.cpp
/external/pigweed/pw_watch/py/pw_watch/
Dwatch.py58 from pw_watch.debounce import DebouncedFunction, Debouncer
/external/kotlinc/lib/
Dkotlinx-coroutines-core.jarMETA-INF/ META-INF/MANIFEST.MF kotlinx/ kotlinx/coroutines/ kotlinx/ ...
/external/doclava/res/assets/templates-sdk/assets/js/
Ddocs.js2238 $.fn.debounce = function(func, wait, immediate) { function
2302 $(window).on('resize', $.fn.debounce(updateEllipsis, 500));
5778 this.customSearch = $.fn.debounce(function(query) {
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
Drx-observable.hpp858 auto debounce(AN&&... an) const in debounce() function in rxcpp::observable
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api944 public static final fun debounce (Lkotlinx/coroutines/flow/Flow;J)Lkotlinx/coroutines/flow/Flow;
945 …public static final fun debounce (Lkotlinx/coroutines/flow/Flow;Lkotlin/jvm/functions/Function1;)L…
946 …public static final fun debounce-8GFy2Ro (Lkotlinx/coroutines/flow/Flow;D)Lkotlinx/coroutines/flow…
/external/kotlinx.coroutines/
DCHANGES.md14 * `Flow.debounce` operator with timeout selector based on each individual element is added (#1216, …
350 * New operators: `switchMap`, `sample`, `debounce` (#1107).

12