Home
last modified time | relevance | path

Searched refs:isAnimatingAway (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/
DDeviceEntrySideFpsOverlayInteractorTest.kt143 isAnimatingAway = false, in updatesShowIndicatorForDeviceEntry_onPrimaryBouncerShowing()
159 isAnimatingAway = false, in updatesShowIndicatorForDeviceEntry_onPrimaryBouncerHidden()
229 isAnimatingAway = false, in updatesShowIndicatorForDeviceEntry_fromPrimaryBouncer_whenFpsDetectionNotRunning()
246 isAnimatingAway = false, in updatesShowIndicatorForDeviceEntry_fromPrimaryBouncer_onUnlockingWithFpDisallowed()
295 isAnimatingAway = true, in updatesShowIndicatorForDeviceEntry_onPrimaryBouncerAnimatingAway()
326 isAnimatingAway = false, in ignoresDuplicateRequestsToShowIndicatorForDeviceEntry()
343 isAnimatingAway: Boolean, in updatePrimaryBouncer()
349 val primaryStartDisappearAnimation = if (isAnimatingAway) Runnable {} else null in updatePrimaryBouncer()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/binder/
DSideFpsOverlayViewBinderTest.kt158 isAnimatingAway = false, in verifyIndicatorNotAdded_whenInRearDisplayMode()
183 isAnimatingAway = false, in verifyIndicatorShowAndHide_onPrimaryBouncerShowAndHide()
194 isAnimatingAway = false, in verifyIndicatorShowAndHide_onPrimaryBouncerShowAndHide()
248 isAnimatingAway = false, in verifyIndicatorShownAndHidden_onSystemServerAuthenticationStartedAndStopped()
289 isAnimatingAway = false, in verifyIndicatorProgressBarInteraction()
320 isAnimatingAway: Boolean, in updatePrimaryBouncer()
326 val primaryStartDisappearAnimation = if (isAnimatingAway) Runnable {} else null in updatePrimaryBouncer()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/viewmodel/
DSideFpsOverlayViewModelTest.kt297 isAnimatingAway = false, in updatesLottieCallbacks_onShowIndicatorForDeviceEntry()
325 isAnimatingAway = false, in updatesLottieCallbacks_onShowIndicatorForSystemServer_inDarkMode()
351 isAnimatingAway = false, in updatesLottieCallbacks_onShowIndicatorForSystemServer_inLightMode()
379 isAnimatingAway: Boolean, in updatePrimaryBouncer()
385 val primaryStartDisappearAnimation = if (isAnimatingAway) Runnable {} else null in updatePrimaryBouncer()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DLegacyLockIconViewControllerTest.java322 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(true); in lockIconAccessibility_bouncerAnimatingAway()
346 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(false); in lockIconAccessibility_bouncerNotAnimatingAway_viewVisible()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DDeviceEntrySideFpsOverlayInteractor.kt127 !primaryBouncerInteractor.isAnimatingAway() in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/domain/interactor/
DPrimaryBouncerInteractorTest.kt331 assertThat(underTest.isAnimatingAway()).isTrue() in testIsAnimatingAway()
333 assertThat(underTest.isAnimatingAway()).isFalse() in testIsAnimatingAway()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DPrimaryBouncerInteractor.kt356 fun isAnimatingAway(): Boolean { in <lambda>() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManagerTest.java336 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(true); in onPanelExpansionChanged_showsBouncerWhenSwiping()
778 when(mPrimaryBouncerInteractor.isAnimatingAway()).thenReturn(true); in testResetBouncerAnimatingAway()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DLegacyLockIconViewController.java408 !mPrimaryBouncerInteractor.isAnimatingAway() && mView.isVisibleToUser(); in updateVisibility()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarKeyguardViewManager.java1808 return mPrimaryBouncerInteractor.isAnimatingAway(); in bouncerIsAnimatingAway()