/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-debug/test/ |
H A D | SanitizedProbesTest.kt | 104 private fun CoroutineScope.launchSelector(): Job { in launchSelector() method 117 private fun CoroutineScope.createActiveDeferred(): Deferred<*> = async { in <lambda>() method 126 private fun CoroutineScope.createDeferred(): Deferred<*> = createDeferredNested() in createDeferred() method 128 private fun CoroutineScope.createDeferredNested(): Deferred<*> = async(NonCancellable) { in createDeferred() method
|
H A D | RunningThreadStackMergeTest.kt | 44 private fun CoroutineScope.launchCoroutine() { in CoroutineScope() method 89 private fun CoroutineScope.launchEscapingCoroutine() { in CoroutineScope() method 125 private fun CoroutineScope.launchEscapingCoroutineWithoutContext() { in CoroutineScope() method
|
H A D | ToStringTest.kt | 46 private fun CoroutineScope.launchDelayed(): Job { in launchDelayed() method 113 private fun CoroutineScope.launchHierarchy(isCompleting: Boolean): Job { in CoroutineScope() method
|
H A D | DumpWithCreationStackTraceTest.kt | 39 private fun CoroutineScope.createActiveDeferred(): Deferred<*> = async { in <lambda>() method
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/gen/stubs/com/android/systemui/lifecycle/ |
D | RepeatWhenAttachedKt.java | 88 …kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope, ? super kotlin.coroutine… in repeatOnWindowLifecycle() 106 …kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope, ? super kotlin.coroutine… in repeatWhenAttachedToWindow() 124 …kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope, ? super kotlin.coroutine… in repeatWhenWindowIsVisible() 142 …kotlin.jvm.functions.Function2<? super kotlinx.coroutines.CoroutineScope, ? super kotlin.coroutine… in repeatWhenWindowHasFocus()
|
D | SysUiViewModelKt.java | 44 …kotlin.jvm.functions.Function3<? super kotlinx.coroutines.CoroutineScope, ? super T, ? super kotli… in viewModel()
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/guide/ |
H A D | example-channel-06.kt | 14 fun CoroutineScope.produceNumbers() = produce<Int> { in <lambda>() method 22 fun CoroutineScope.launchProcessor(id: Int, channel: ReceiveChannel<Int>) = launch { in <lambda>() method
|
H A D | example-channel-04.kt | 17 fun CoroutineScope.produceNumbers() = produce<Int> { in <lambda>() method 22 fun CoroutineScope.square(numbers: ReceiveChannel<Int>): ReceiveChannel<Int> = produce { in <lambda>() method
|
H A D | example-channel-05.kt | 17 fun CoroutineScope.numbersFrom(start: Int) = produce<Int> { in <lambda>() method 22 fun CoroutineScope.filter(numbers: ReceiveChannel<Int>, prime: Int) = produce<Int> { in filter() method
|
H A D | example-select-01.kt | 8 fun CoroutineScope.fizz() = produce<String> { in <lambda>() method 15 fun CoroutineScope.buzz() = produce<String> { in <lambda>() method
|
H A D | example-select-05.kt | 8 fun CoroutineScope.switchMapDeferreds(input: ReceiveChannel<Deferred<String>>) = produce<String> { in <lambda>() method 29 fun CoroutineScope.asyncString(str: String, time: Long) = async { in <lambda>() method
|
H A D | example-select-04.kt | 8 fun CoroutineScope.asyncString(time: Int) = async { in <lambda>() method 13 fun CoroutineScope.asyncStringsList(): List<Deferred<String>> { in asyncStringsList() method
|
H A D | example-channel-03.kt | 7 fun CoroutineScope.produceSquares(): ReceiveChannel<Int> = produce { in <lambda>() method
|
H A D | example-select-03.kt | 8 fun CoroutineScope.produceNumbers(side: SendChannel<Int>) = produce<Int> { in <lambda>() method
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
H A D | CoroutineScope.kt | 75 public interface CoroutineScope { in <lambda>() interface 273 public fun CoroutineScope(context: CoroutineContext): CoroutineScope = in CoroutineScope() method
|
/aosp_15_r20/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/scheduler/actors/ |
H A D | PingPongActorBenchmark.kt | 60 fun CoroutineScope.pingActorCoroutine( in CoroutineScope() method 84 fun CoroutineScope.pongActorCoroutine(capacity: Int = 1) = in pongActorCoroutine() method
|
H A D | StatefulActorBenchmark.kt | 77 …private fun CoroutineScope.requestorActor(computations: List<SendChannel<Letter>>, stopChannel: Ch… in requestorActor() method 97 fun CoroutineScope.computationActor(stateSize: Int = STATE_SIZE) = in computationActor() method
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/dialog/sliders/ui/ |
H A D | VolumeDialogSlidersViewBinder.kt | 38 fun CoroutineScope.bind(view: View) { in <lambda>() method 59 private fun CoroutineScope.bindSlider( in <lambda>() method
|
/aosp_15_r20/out/soong/.intermediates/packages/modules/IntentResolver/IntentResolver-core/android_common/kapt/gen/stubs/com/android/intentresolver/contentpreview/payloadtoggle/ui/viewmodel/ |
D | ShareouselViewModel.java | 77 …, ? super java.lang.Integer, ? super java.lang.Integer, ? super kotlinx.coroutines.CoroutineScope,… in ShareouselViewModel() 167 …, ? super java.lang.Integer, ? super java.lang.Integer, ? super kotlinx.coroutines.CoroutineScope,… in copy()
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/channels/ |
H A D | ChannelSelectStressTest.kt | 47 private fun CoroutineScope.launchSender() { in CoroutineScope() method 58 private fun CoroutineScope.launchReceiver() { in launchReceiver() method
|
/aosp_15_r20/external/kotlinx.coroutines/ui/kotlinx-coroutines-android/test/ |
H A D | HandlerDispatcherTest.kt | 83 private fun CoroutineScope.doTestAwaitFrame() { in CoroutineScope() method 98 private fun CoroutineScope.doTestAwaitWithDetectedChoreographer() { in CoroutineScope() method
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/panel/component/volume/ui/viewmodel/ |
H A D | AudioVolumeComponentViewModel.kt | 134 private fun CoroutineScope.createSessionViewModel( in <lambda>() method 140 private fun CoroutineScope.createStreamViewModel( in <lambda>() method
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/scheduling/ |
H A D | BlockingCoroutineDispatcherWorkSignallingStressTest.kt | 49 private fun CoroutineScope.blockingAwait( in CoroutineScope() method 55 private fun CoroutineScope.cpuAwait( in CoroutineScope() method
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/dialog/ui/binder/ |
H A D | VolumeDialogViewBinder.kt | 68 fun CoroutineScope.bind(dialog: Dialog) { in <lambda>() method 91 private fun CoroutineScope.animateVisibility( in <lambda>() method
|
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-test/jvm/test/ |
H A D | DumpOnTimeoutTest.kt | 38 fun CoroutineScope.uniquelyNamedFunction() { in uniquelyNamedFunction() method
|