Home
last modified time | relevance | path

Searched defs:dispatchYield (Results 1 – 7 of 7) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCoroutineDispatcher.kt93 …public open fun dispatchYield(context: CoroutineContext, block: Runnable) = dispatch(context, bloc… method in kotlinx.coroutines.CoroutineDispatcher
DDispatched.kt172 internal fun dispatchYield(value: T) { in <lambda>() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/
DDispatchers.kt27 …override fun dispatchYield(context: CoroutineContext, block: Runnable) = delegate.dispatchYield(co… method in kotlinx.coroutines.JsMainDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/
DDispatchers.kt27 …override fun dispatchYield(context: CoroutineContext, block: Runnable) = delegate.dispatchYield(co… method in kotlinx.coroutines.NativeMainDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DCoroutineDispatcherOperatorFunInvokeTest.kt74 override fun dispatchYield(context: CoroutineContext, block: Runnable) { in String() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/scheduling/
DDispatcher.kt66 override fun dispatchYield(context: CoroutineContext, block: Runnable): Unit = in toString() method in kotlinx.coroutines.scheduling.ExperimentalCoroutineDispatcher
/external/kotlinx.coroutines/kotlinx-coroutines-test/src/
DTestCoroutineDispatcher.kt58 override fun dispatchYield(context: CoroutineContext, block: Runnable) { in <lambda>() method in kotlinx.coroutines.test.TestCoroutineDispatcher