/external/android_onboarding/java/com/android/onboarding/tasks/ |
D | DefaultOnboardingTaskManager.kt | 11 private constructor(appContext: Context, coroutineScope: CoroutineScope) : 12 AbstractOnboardingTaskManager(appContext, coroutineScope) { 53 coroutineScope: CoroutineScope? = null, in initializeContractAndTaskMap() 60 coroutineScope ?: CoroutineScope(Dispatchers.Default + SupervisorJob()), in initializeContractAndTaskMap() 67 instance?.coroutineScope?.cancel() in initializeContractAndTaskMap()
|
D | AbstractOnboardingTaskManager.kt | 22 protected val coroutineScope: CoroutineScope, constant in com.android.onboarding.tasks.AbstractOnboardingTaskManager 70 coroutineScope.launch { performTask(taskContract, task, taskArgs, taskToken) } in initializeContractAndTaskMap() 137 return coroutineScope.future { runTaskAndGetResult(taskContract, taskArgs) } in runTaskAndGetResultAsync() 150 return coroutineScope.future { runTaskAndGetResult(taskContract, task, taskArgs) } in runTaskAndGetResultAsync() 181 coroutineScope.future { waitForCompleted(taskToken) } in waitForCompletedAsync()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/ |
D | CoroutineScopeTest.kt | 13 suspend fun callJobScoped() = coroutineScope { in <lambda>() 41 suspend fun callJobScoped() = coroutineScope { in <lambda>() 67 coroutineScope { in <lambda>() 80 suspend fun callJobScoped(): Unit = coroutineScope { in <lambda>() 100 suspend fun callJobScoped() = coroutineScope { in <lambda>() 148 private suspend fun failedConcurrentSumFirst(): Int = coroutineScope { in <lambda>() 178 private suspend fun failedConcurrentSumSecond(): Int = coroutineScope { in <lambda>() 199 suspend fun loadData() = coroutineScope { in <lambda>() 233 coroutineScope { in <lambda>() 289 coroutineScope { in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/ |
D | FlowInvariantsTest.kt | 108 coroutineScope { in <lambda>() 117 coroutineScope { in <lambda>() 120 coroutineScope { emit(value) } in <lambda>() 142 coroutineScope { in <lambda>() 145 coroutineScope { send(value) } in <lambda>() 160 coroutineScope { in <lambda>() 175 coroutineScope { in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/channels/ |
D | BasicOperationsTest.kt | 125 private suspend fun testReceiveCatching(kind: TestChannelKind) = coroutineScope { in <lambda>() 153 private suspend fun testTrySendAfterClose(kind: TestChannelKind) = coroutineScope { in <lambda>() 171 private suspend fun testTrySendToFullChannel(kind: TestChannelKind) = coroutineScope { in <lambda>() 172 if (kind.isConflated || kind.capacity == Int.MAX_VALUE) return@coroutineScope in <lambda>() 192 coroutineScope { in <lambda>() 203 private suspend fun testSendReceive(kind: TestChannelKind, iterations: Int) = coroutineScope { in <lambda>()
|
/external/accompanist/web/src/main/java/com/google/accompanist/web/ |
D | WebView.kt | 519 public class WebViewNavigator(private val coroutineScope: CoroutineScope) { constant in WebViewNavigator 605 coroutineScope.launch { in loadUrl() 622 coroutineScope.launch { in loadHtml() 639 coroutineScope.launch { in postUrl() 653 coroutineScope.launch { navigationEvents.emit(NavigationEvent.Back) } in navigateBack() 660 coroutineScope.launch { navigationEvents.emit(NavigationEvent.Forward) } in navigateForward() 667 coroutineScope.launch { navigationEvents.emit(NavigationEvent.Reload) } in reload() 674 coroutineScope.launch { navigationEvents.emit(NavigationEvent.StopLoading) } in stopLoading() 691 coroutineScope: CoroutineScope = rememberCoroutineScope() in rememberWebViewNavigator() 692 ): WebViewNavigator = remember(coroutineScope) { WebViewNavigator(coroutineScope) } in rememberWebViewNavigator()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/exceptions/ |
D | StackTraceRecoveryCustomExceptionsTest.kt | 78 coroutineScope<Unit> { in <lambda>() 90 coroutineScope<Unit> { in <lambda>() 136 coroutineScope<Unit> { in <lambda>() 155 coroutineScope<Unit> { in <lambda>()
|
/external/jetpack-camera-app/core/camera/src/main/java/com/google/jetpackcamera/core/camera/ |
D | CoroutineCameraProvider.kt | 32 import kotlinx.coroutines.coroutineScope 45 ): R = coroutineScope { in runWith() 55 ): R = coroutineScope { in runWithConcurrent()
|
D | ConcurrentCameraSession.kt | 28 import kotlinx.coroutines.coroutineScope in <lambda>() 41 ) = coroutineScope { in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/terminal/ |
D | FirstTest.kt | 38 coroutineScope { in <lambda>() 67 coroutineScope { in <lambda>() 105 coroutineScope { in <lambda>() 140 coroutineScope { in <lambda>()
|
/external/lottie/snapshot-tests/src/androidTest/java/com/airbnb/lottie/snapshots/tests/ |
D | ProdAnimationsTestCase.kt | 21 import kotlinx.coroutines.coroutineScope in <lambda>() 31 override suspend fun SnapshotTestCaseContext.run() = coroutineScope { in <lambda>() 58 suspend fun SnapshotTestCaseContext.downloadAnimations() = coroutineScope { in <lambda>() 66 coroutineScope { in <lambda>()
|
D | AssetsTestCase.kt | 11 import kotlinx.coroutines.coroutineScope in <lambda>() 16 override suspend fun SnapshotTestCaseContext.run() = coroutineScope { in <lambda>()
|
/external/accompanist/swiperefresh/src/main/java/com/google/accompanist/swiperefresh/ |
D | SwipeRefresh.kt | 140 private val coroutineScope: CoroutineScope, constant in SwipeRefreshNestedScrollConnection 184 coroutineScope.launch { in onScroll() 274 val coroutineScope = rememberCoroutineScope() constant 288 val nestedScrollConnection = remember(state, coroutineScope) { in <lambda>() 289 SwipeRefreshNestedScrollConnection(state, coroutineScope) { in <lambda>()
|
/external/jetpack-camera-app/core/camera/src/main/java/com/google/jetpackcamera/core/camera/effects/ |
D | SingleSurfaceForcingEffect.kt | 32 class SingleSurfaceForcingEffect(coroutineScope: CoroutineScope) : CameraEffect( 35 CopyingSurfaceProcessor(coroutineScope),
|
D | CopyingSurfaceProcessor.kt | 42 import kotlinx.coroutines.coroutineScope in <lambda>() 58 class CopyingSurfaceProcessor(coroutineScope: CoroutineScope) : SurfaceProcessor { in <lambda>() 64 coroutineScope.launch(start = CoroutineStart.UNDISPATCHED) { in <lambda>() 78 coroutineScope inputScope@{ in <lambda>()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/ |
D | ThreadContextElementRestoreTest.kt | 22 coroutineScope { in <lambda>() 129 coroutineScope { in <lambda>() 136 coroutineScope { in <lambda>()
|
D | JobCancellationExceptionSerializerTest.kt | 14 coroutineScope { in <lambda>() 43 coroutineScope { in <lambda>()
|
D | ThreadLocalStressTest.kt | 137 coroutineScope { in doTest() 151 coroutineScope { in doTestWithContextSwitch()
|
/external/oboe/samples/minimaloboe/src/main/kotlin/com/example/minimaloboe/ |
D | AudioPlayer.kt | 35 private val coroutineScope = CoroutineScope(Dispatchers.Default) + Job() constant 48 coroutineScope.launch { in setPlaybackEnabled()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/operators/ |
D | TakeWhileTest.kt | 32 coroutineScope { in <lambda>() 50 coroutineScope { in <lambda>()
|
D | FilterTest.kt | 28 coroutineScope { in <lambda>() 63 coroutineScope { in <lambda>()
|
D | TakeTest.kt | 64 coroutineScope { in <lambda>() 81 coroutineScope { in <lambda>()
|
D | DistinctUntilChangedTest.kt | 57 coroutineScope { in <lambda>() 74 coroutineScope { in <lambda>()
|
/external/jetpack-camera-app/core/common/src/test/java/com/google/jetpackcamera/core/common/ |
D | RefCountedTest.kt | 21 import kotlinx.coroutines.coroutineScope 111 coroutineScope { in <lambda>()
|
/external/kotlinx.coroutines/integration-testing/smokeTest/src/commonMain/kotlin/ |
D | Sample.kt | 3 suspend fun doWorld() = coroutineScope { in doWorld()
|