/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesCommandQueueCallbacks.java | 85 private final com.android.systemui.shade.ShadeController mShadeController; field in CentralSurfacesCommandQueueCallbacks 156 mShadeController = shadeController; in CentralSurfacesCommandQueueCallbacks() 218 mShadeController.animateCollapseShade(flags, force, false /* delayed */, in animateCollapsePanels() 226 "animateExpand: mExpandedVisible=" + mShadeController.isExpandedVisible()); in animateExpandNotificationsPanel() 228 mShadeController.animateExpandShade(); in animateExpandNotificationsPanel() 235 "animateExpand: mExpandedVisible=" + mShadeController.isExpandedVisible()); in animateExpandSettingsPanel() 237 mShadeController.animateExpandQs(); in animateExpandSettingsPanel() 277 mShadeController.animateCollapseShade(); in disable() 289 mShadeController.animateCollapseShade(); in disable() 317 mShadeController.animateCollapseShade(); in handleSystemKey() [all …]
|
D | StatusBarNotificationActivityStarter.java | 131 private final ShadeController mShadeController; field in StatusBarNotificationActivityStarter 203 mShadeController = shadeController; in StatusBarNotificationActivityStarter() 331 mShadeController.addPostCollapseAction(runnable); in performActionOnKeyguardDismissed() 332 mShadeController.collapseShade(true /* animate */); in performActionOnKeyguardDismissed() 336 mShadeController.collapseShade(); in performActionOnKeyguardDismissed() 377 mShadeController.collapseOnMainThread(); in handleNotificationClickAfterPanelCollapsed() 415 mShadeController.addPostCollapseAction(removeNotification); in handleNotificationClickAfterPanelCollapsed() 452 mShadeController.addPostCollapseAction(removeNotification); in onDragSuccess() 479 mShadeController.collapseShade(); in expandBubbleStack() 495 mShadeController, in startNotificationIntent() [all …]
|
D | StatusBarRemoteInputCallback.java | 72 private final com.android.systemui.shade.ShadeController mShadeController; field in StatusBarRemoteInputCallback 101 mShadeController = shadeController; in StatusBarRemoteInputCallback() 184 mShadeController.postOnShadeExpanded(clickPendingViewRunnable); in onWorkChallengeChanged() 185 mShadeController.instantExpandShade(); in onWorkChallengeChanged() 293 return handled && mShadeController.closeShadeIfOpen(); in handleRemoteViewClick()
|
D | CentralSurfacesImpl.java | 420 private final ShadeController mShadeController; field in CentralSurfacesImpl 781 mShadeController = shadeController; in CentralSurfacesImpl() 1103 mShadeController.setVisibilityListener(new ShadeController.ShadeVisibilityListener() { in initShadeVisibilityListener() 1125 boolean isShadeOpen = mShadeController.isShadeFullyOpen(); in onFoldedStateChangedInternal() 1126 boolean isShadeExpandingOrCollapsing = mShadeController.isExpandingOrCollapsing(); in onFoldedStateChangedInternal() 1272 mShadeController::makeExpandedInvisible, in makeStatusBarView() 1452 mShadeController.setNotificationPresenter(mPresenterLazy.get()); in setUpPresenter() 1485 mShadeController.onStatusBarTouch(event); in getStatusBarWindowTouchListener() 1498 mShadeController.setNotificationShadeWindowViewController( in setUpShade() 1750 pw.println(" mExpandedVisible=" + mShadeController.isExpandedVisible()); in dump() [all …]
|
D | StatusBarKeyguardViewManager.java | 168 private final Lazy<ShadeController> mShadeController; field in StatusBarKeyguardViewManager 412 mShadeController = shadeController; in StatusBarKeyguardViewManager() 627 || mShadeController.get().isExpandingOrCollapsing()); in beginShowingBouncer() 1088 mShadeController.get().addPostCollapseAction(postCollapseAction); in setOccluded()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationConversationInfoTest.java | 152 private ShadeController mShadeController; field in NotificationConversationInfoTest 166 mDependency.injectTestDependency(ShadeController.class, mShadeController); in setUp() 259 mShadeController); in testBindNotification_SetsShortcutIcon() 284 mShadeController); in testBindNotification_SetsTextApplicationName() 337 mShadeController); in testBindNotification_SetsTextGroupName() 363 mShadeController); in testBindNotification_GroupNameHiddenIfNoGroup() 388 mShadeController); in testBindNotification_noDelegate() 424 mShadeController); in testBindNotification_delegate() 453 mShadeController); in testBindNotification_SetsOnClickListenerForSettings() 480 mShadeController); in testBindNotification_SettingsButtonInvisibleWhenNoClickListener() [all …]
|
D | ExpandableNotificationRowDragControllerTest.java | 65 private ShadeController mShadeController = mock(ShadeController.class); field in ExpandableNotificationRowDragControllerTest 86 mShadeController, mNotificationPanelLogger); in setUp() 110 verify(mShadeController).animateCollapseShade(eq(0), eq(true), in testDoStartDragNotif()
|
D | NotificationGutsManagerTest.java | 152 @Mock private ShadeController mShadeController; field in NotificationGutsManagerTest 204 mShadeController, in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | EmergencyButtonController.java | 61 private final ShadeController mShadeController; field in EmergencyButtonController 108 mShadeController = shadeController; in EmergencyButtonController() 172 mShadeController.collapseShade(false); in takeEmergencyCallAction() 216 private final ShadeController mShadeController; field in EmergencyButtonController.Factory 242 mShadeController = shadeController; in Factory() 254 mKeyguardUpdateMonitor, mPowerManager, mActivityTaskManager, mShadeController, in create()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | CentralSurfacesCommandQueueCallbacksTest.java | 80 @Mock private ShadeController mShadeController; field in CentralSurfacesCommandQueueCallbacksTest 119 mShadeController, in setup() 164 verify(mShadeController).animateCollapseShade(); in testDisableNotificationShade() 172 reset(mShadeController); in testEnableNotificationShade() 180 verify(mShadeController, never()).animateCollapseShade(); in testEnableNotificationShade() 199 verify(mShadeController).performHapticFeedback( in vibrateOnNavigationKeyDown_usesPerformHapticFeedback()
|
D | StatusBarRemoteInputCallbackTest.java | 59 @Mock private com.android.systemui.shade.ShadeController mShadeController; field in StatusBarRemoteInputCallbackTest 75 mDependency.injectTestDependency(ShadeController.class, mShadeController); in setUp() 82 mActivityStarter, mShadeController, in setUp()
|
D | StatusBarNotificationActivityStarterTest.java | 151 private ShadeControllerImpl mShadeController; field in StatusBarNotificationActivityStarterTest 252 mShadeController, in setUp() 285 .when(mShadeController).addPostCollapseAction(any(Runnable.class)); in setUp() 314 verify(mShadeController, atLeastOnce()).collapseShade(); in testOnNotificationClicked_keyGuardShowing() 347 verify(mShadeController, atLeastOnce()).collapseShade(); in testOnNotificationClicked_bubble_noContentIntent_noKeyGuard() 380 verify(mShadeController, atLeastOnce()).collapseShade(); in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing() 408 verify(mShadeController, atLeastOnce()).collapseShade(); in testOnNotificationClicked_bubble_withContentIntent_keyGuardShowing() 440 verifyNoMoreInteractions(mShadeController); in testOnNotificationBubbleIconClicked_unbubble_keyGuardShowing()
|
D | StatusBarNotificationPresenterTest.java | 100 private final ShadeController mShadeController = mock(ShadeController.class); field in StatusBarNotificationPresenterTest 111 mDependency.injectTestDependency(ShadeController.class, mShadeController); in setup()
|
D | CentralSurfacesImplTest.java | 345 private ShadeController mShadeController; field in CentralSurfacesImplTest 450 mShadeController = spy(mKosmos.getShadeController()); in setup() 452 mShadeController = spy(new ShadeControllerImpl( in setup() 468 mShadeController.setNotificationShadeWindowViewController( in setup() 470 mShadeController.setNotificationPresenter(mNotificationPresenter); in setup() 563 mShadeController, in createCentralSurfaces()
|
D | StatusBarKeyguardViewManagerTest.java | 142 @Mock private ShadeController mShadeController; field in StatusBarKeyguardViewManagerTest 213 () -> mShadeController, in setUp() 721 () -> mShadeController, in hideAlternateBouncer_beforeCentralSurfacesRegistered()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/ |
D | SystemActions.java | 192 private final ShadeController mShadeController; field in SystemActions 210 mShadeController = shadeController; in SystemActions() 313 if (mShadeController.isShadeEnabled()) { in registerActions() 491 mShadeController.animateExpandShade(); in handleNotifications() 495 mShadeController.animateExpandQs(); in handleQuickSettings() 550 mShadeController.animateCollapseShade(CommandQueue.FLAG_EXCLUDE_NONE); in handleAccessibilityDismissNotificationShade()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRowDragController.java | 68 private final ShadeController mShadeController; field in ExpandableNotificationRowDragController 78 mShadeController = shadeController; in ExpandableNotificationRowDragController() 151 mShadeController.animateCollapseShade(CommandQueue.FLAG_EXCLUDE_NONE, true /* force */, in dismissShade()
|
D | NotificationConversationInfo.java | 98 private ShadeController mShadeController; field in NotificationConversationInfo 161 mShadeController.animateCollapseShade(); 233 mShadeController = shadeController; in bindNotification()
|
D | NotificationGutsManager.java | 129 private final ShadeController mShadeController; field in NotificationGutsManager 179 mShadeController = shadeController; in NotificationGutsManager() 527 mShadeController); in initializeConversationNotificationInfo()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/ |
D | SystemActionsTest.java | 67 private ShadeController mShadeController; field in SystemActionsTest 90 mShadeController, in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/ |
D | BubblesManager.java | 103 private final ShadeController mShadeController; field in BubblesManager 202 mShadeController = shadeController; in BubblesManager() 610 mShadeController.collapseShade(true); 658 mShadeController.collapseShade(true);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialogLiteTest.java | 139 @Mock private ShadeController mShadeController; field in GlobalActionsDialogLiteTest 197 mShadeController, in setUp() 341 verify(mShadeController).animateExpandQs(); in testSwipeDownLockscreen_logAndOpenQS() 365 verify(mShadeController).animateExpandShade(); in testSwipeDown_logAndOpenNotificationShade() 393 verify(mShadeController, never()).animateExpandShade(); in testSwipeDown_pastStatusBarHeight_shadeNotOpened()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialogLite.java | 261 private final ShadeController mShadeController; field in GlobalActionsDialogLite 414 mShadeController = shadeController; in GlobalActionsDialogLite() 733 mShadeController, in createDialog() 945 mShadeController.cancelExpansionAndCollapseShade(); in onPress() 2287 private final ShadeController mShadeController; 2386 mShadeController = shadeController; 2437 mShadeController.animateExpandQs(); 2440 mShadeController.animateExpandShade();
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/ |
D | QSTileHostTest.java | 113 private ShadeController mShadeController; field in QSTileHostTest 169 mPluginManager, mTunerService, () -> mAutoTiles, () -> mShadeController, in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutControllerTest.java | 165 @Mock private ShadeController mShadeController; field in NotificationStackScrollLayoutControllerTest 1013 mShadeController, in initController()
|