Home
last modified time | relevance | path

Searched refs:mKeyguardStatusViewController (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DNotificationPanelViewControllerTest.java786 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSinglePaneShade()
791 verify(mKeyguardStatusViewController).displayClock(SMALL, /* animate */ true); in testSwitchesToCorrectClockInSinglePaneShade()
798 clearInvocations(mKeyguardStatusViewController); in testSwitchesToCorrectClockInSplitShade()
803 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSplitShade()
808 verify(mKeyguardStatusViewController, times(2)) in testSwitchesToCorrectClockInSplitShade()
810 verify(mKeyguardStatusViewController, never()) in testSwitchesToCorrectClockInSplitShade()
822 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testHasNotifications_switchesToLargeClockWhenEnteringSplitShade()
833 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testNoNotifications_switchesToLargeClockWhenEnteringSplitShade()
840 clearInvocations(mKeyguardStatusViewController); in testHasNotifications_switchesToSmallClockWhenExitingSplitShade()
846 verify(mKeyguardStatusViewController).displayClock(SMALL, /* animate */ true); in testHasNotifications_switchesToSmallClockWhenExitingSplitShade()
[all …]
DNotificationPanelViewControllerWithCoroutinesTest.kt122 verify(mKeyguardStatusViewController, times(3)).displayClock(LARGE, /* animate */ true) in <lambda>()
207 verify(mKeyguardStatusViewController) in <lambda>()
DNotificationPanelViewControllerBaseTest.java384 protected KeyguardStatusViewController mKeyguardStatusViewController; field in NotificationPanelViewControllerBaseTest
470 mKeyguardStatusViewController = spy(new KeyguardStatusViewController( in setup()
647 .thenReturn(mKeyguardStatusViewController); in setup()
801 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in setup()
802 reset(mKeyguardStatusViewController); in setup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationPanelViewController.java393 private KeyguardStatusViewController mKeyguardStatusViewController; field in NotificationPanelViewController
1309 if (mKeyguardStatusViewController != null) { in updateStatusViewController()
1310 mKeyguardStatusViewController.onDestroy(); in updateStatusViewController()
1317 mKeyguardStatusViewController = in updateStatusViewController()
1325 mKeyguardStatusViewController = statusViewComponent.getKeyguardStatusViewController(); in updateStatusViewController()
1326 mKeyguardStatusViewController.init(); in updateStatusViewController()
1328 mKeyguardStatusViewController.setSplitShadeEnabled(mSplitShadeEnabled); in updateStatusViewController()
1329 mKeyguardStatusViewController.getView().addOnLayoutChangeListener( in updateStatusViewController()
1366 mKeyguardStatusViewController.setSplitShadeEnabled(mSplitShadeEnabled); in onSplitShadeEnabledChanged()
1483 mKeyguardStatusViewController.setKeyguardStatusViewVisibility( in reInflateViews()
[all …]