Home
last modified time | relevance | path

Searched defs:debounce (Results 1 – 5 of 5) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DDelay.kt65 public fun <T> Flow<T>.debounce(timeoutMillis: Long): Flow<T> { in <lambda>() method
116 public fun <T> Flow<T>.debounce(timeoutMillis: (T) -> Long): Flow<T> = in debounce() method
152 public fun <T> Flow<T>.debounce(timeout: Duration): Flow<T> = in debounce() method
201 public fun <T> Flow<T>.debounce(timeout: (T) -> Duration): Flow<T> = in debounce() method
/external/perfetto/ui/src/frontend/
Drate_limiters.ts32 export function debounce(f: Function, ms: number): Function { function
/external/kotlinx.coroutines/kotlinx-coroutines-core/jdk8/src/time/
DTime.kt24 public fun <T> Flow<T>.debounce(timeout: Duration): Flow<T> = debounce(timeout.coerceToMillis()) in delay() method
/external/arm-trusted-firmware/plat/rockchip/rk3399/drivers/gpio/
Drk3399_gpio.c36 uint32_t debounce; member
/external/doclava/res/assets/templates-sdk/assets/js/
Ddocs.js2238 $.fn.debounce = function(func, wait, immediate) { function