Home
last modified time | relevance | path

Searched refs:isLaunchAnimationRunning (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/domain/interactor/
DNotificationLaunchAnimationInteractor.kt38 val isLaunchAnimationRunning: StateFlow<Boolean> constant in com.android.systemui.statusbar.notification.domain.interactor.NotificationLaunchAnimationInteractor
39 get() = repository.isLaunchAnimationRunning
46 repository.isLaunchAnimationRunning.value = running in setIsLaunchAnimationRunning()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/domain/interactor/
DNotificationLaunchAnimationInteractorTest.kt34 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>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DWindowManagerLockscreenVisibilityInteractor.kt159 notificationLaunchAnimationInteractor.isLaunchAnimationRunning, in <lambda>()
160 ) { transition, isAnimatingSurface, isLaunchAnimationRunning -> in <lambda>() method
163 val isAnyAnimationRunning = isAnimatingSurface || isLaunchAnimationRunning in <lambda>()
181 notificationLaunchAnimationInteractor.isLaunchAnimationRunning, in <lambda>()
DKeyguardSurfaceBehindInteractor.kt61 notificationLaunchInteractor.isLaunchAnimationRunning, in <lambda>()
105 notificationLaunchInteractor.isLaunchAnimationRunning in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorControllerTest.kt89 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testHunIsRemovedAndCallbackIsInvokedIfWeDontAnimateLaunch()
107 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testHunIsRemovedAndCallbackIsInvokedWhenAnimationIsCancelled()
125 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testHunIsRemovedAndCallbackIsInvokedWhenAnimationEnds()
180 notificationLaunchAnimationInteractor.isLaunchAnimationRunning in testNotificationIsExpandingDuringAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/data/repository/
DNotificationLaunchAnimationRepository.kt26 val isLaunchAnimationRunning = MutableStateFlow(false) constant in com.android.systemui.statusbar.notification.data.repository.NotificationLaunchAnimationRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/window/
DStatusBarWindowController.java303 private void setLaunchAnimationRunning(boolean isLaunchAnimationRunning) {
304 if (isLaunchAnimationRunning == mCurrentState.mIsLaunchAnimationRunning) {
308 mCurrentState.mIsLaunchAnimationRunning = isLaunchAnimationRunning;
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationShadeWindowViewController.java237 notificationLaunchAnimationInteractor.isLaunchAnimationRunning(), in NotificationShadeWindowViewController()