Searched refs:isLaunchAnimationRunning (Results 1 – 8 of 8) sorted by relevance
38 val isLaunchAnimationRunning: StateFlow<Boolean> constant in com.android.systemui.statusbar.notification.domain.interactor.NotificationLaunchAnimationInteractor39 get() = repository.isLaunchAnimationRunning46 repository.isLaunchAnimationRunning.value = running in setIsLaunchAnimationRunning()
34 val latest by collectLastValue(underTest.isLaunchAnimationRunning) in <lambda>()41 val latest by collectLastValue(underTest.isLaunchAnimationRunning) in <lambda>()50 val latest by collectLastValue(underTest.isLaunchAnimationRunning) in <lambda>()
159 notificationLaunchAnimationInteractor.isLaunchAnimationRunning, in <lambda>()160 ) { transition, isAnimatingSurface, isLaunchAnimationRunning -> in <lambda>() method163 val isAnyAnimationRunning = isAnimatingSurface || isLaunchAnimationRunning in <lambda>()181 notificationLaunchAnimationInteractor.isLaunchAnimationRunning, in <lambda>()
61 notificationLaunchInteractor.isLaunchAnimationRunning, in <lambda>()105 notificationLaunchInteractor.isLaunchAnimationRunning in <lambda>()
89 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testHunIsRemovedAndCallbackIsInvokedIfWeDontAnimateLaunch()107 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testHunIsRemovedAndCallbackIsInvokedWhenAnimationIsCancelled()125 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testHunIsRemovedAndCallbackIsInvokedWhenAnimationEnds()180 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testNotificationIsExpandingDuringAnimation()
26 val isLaunchAnimationRunning = MutableStateFlow(false) constant in com.android.systemui.statusbar.notification.data.repository.NotificationLaunchAnimationRepository
303 private void setLaunchAnimationRunning(boolean isLaunchAnimationRunning) {304 if (isLaunchAnimationRunning == mCurrentState.mIsLaunchAnimationRunning) {308 mCurrentState.mIsLaunchAnimationRunning = isLaunchAnimationRunning;
237 notificationLaunchAnimationInteractor.isLaunchAnimationRunning(), in NotificationShadeWindowViewController()