Searched refs:mNotificationPanelView (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | NotificationPanelViewTest.java | 111 private NotificationPanelView mNotificationPanelView; field in NotificationPanelViewTest 133 mNotificationPanelView = new TestableNotificationPanelView(coordinator, expansionHandler, in setup() 135 mNotificationPanelView.setHeadsUpManager(mHeadsUpManager); in setup() 136 mNotificationPanelView.setBar(mPanelBar); in setup() 144 mNotificationPanelView.setDozing(true /* dozing */, true /* animate */, null /* touch */); in testSetDozing_notifiesNsslAndStateController() 152 mNotificationPanelView.setExpandedHeight(200); in testSetExpandedHeight() 153 assertThat((int) mNotificationPanelView.getExpandedHeight()).isEqualTo(200); in testSetExpandedHeight() 159 mNotificationPanelView.setExpandedFraction(1f); in testAffordanceLaunchingListener() 160 mNotificationPanelView.setLaunchAffordanceListener(listener); in testAffordanceLaunchingListener() 161 mNotificationPanelView.launchCamera(false /* animate */, in testAffordanceLaunchingListener() [all …]
|
D | StatusBarTest.java | 140 @Mock private NotificationPanelView mNotificationPanelView; field in StatusBarTest 239 when(mNotificationPanelView.getLayoutParams()).thenReturn(new LayoutParams(0, 0)); in setup() 261 mPowerManager, mNotificationPanelView, mBarService, mNotificationListener, in setup() 565 verify(mNotificationPanelView).setQsExpansionEnabled(false); in testDisableExpandStatusBar() 567 verify(mNotificationPanelView, never()).expand(anyBoolean()); in testDisableExpandStatusBar() 569 verify(mNotificationPanelView, never()).expand(anyBoolean()); in testDisableExpandStatusBar() 574 verify(mNotificationPanelView).setQsExpansionEnabled(true); in testDisableExpandStatusBar() 576 verify(mNotificationPanelView).expandWithoutQs(); in testDisableExpandStatusBar() 578 verify(mNotificationPanelView).expandWithQs(); in testDisableExpandStatusBar() 745 clearInvocations(mNotificationPanelView); in testOnStartedWakingUp_isNotDozing() [all …]
|
D | StatusBarKeyguardViewManagerTest.java | 71 private NotificationPanelView mNotificationPanelView; field in StatusBarKeyguardViewManagerTest 97 mNotificationPanelView, mBiometrucUnlockController, mDismissCallbackRegistry, in setUp() 155 when(mNotificationPanelView.isUnlockHintRunning()).thenReturn(true); in onPanelExpansionChanged_neverShowsDuringHintAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarKeyguardViewManager.java | 135 private NotificationPanelView mNotificationPanelView; field in StatusBarKeyguardViewManager 228 mNotificationPanelView = notificationPanelView; in registerStatusBar() 242 if (mNotificationPanelView.isUnlockHintRunning()) { in onPanelExpansionChanged() 273 && !mNotificationPanelView.isQsExpanded(); in updateLockIcon() 533 mNotificationPanelView.onBouncerPreHideAnimation(); in startPreHideAnimation() 537 mNotificationPanelView.blockExpansionForCurrentTouch(); in startPreHideAnimation() 591 ViewGroupFadeHelper.fadeOutAllChildrenExcept(mNotificationPanelView, in hide() 607 ViewGroupFadeHelper.fadeOutAllChildrenExcept(mNotificationPanelView, in hide() 666 ViewGroupFadeHelper.reset(mNotificationPanelView); in onKeyguardFadedAway()
|