/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarHeadsUpChangeListener.java | 39 private final ShadeViewController mShadeViewController; field in StatusBarHeadsUpChangeListener 58 mShadeViewController = shadeViewController; in StatusBarHeadsUpChangeListener() 76 if (mShadeViewController.isFullyCollapsed()) { in onHeadsUpPinnedModeChanged() 77 mShadeViewController.updateTouchableRegion(); in onHeadsUpPinnedModeChanged() 82 if (!mShadeViewController.isFullyCollapsed() in onHeadsUpPinnedModeChanged() 83 || mShadeViewController.isTracking() in onHeadsUpPinnedModeChanged()
|
H A D | CentralSurfacesCommandQueueCallbacks.java | 89 private final ShadeViewController mShadeViewController; field in CentralSurfacesCommandQueueCallbacks 160 mShadeViewController = shadeViewController; in CentralSurfacesCommandQueueCallbacks() 297 mShadeViewController.disableHeader(state1, state2, animate); in disable() 319 mShadeViewController.collapse( in handleSystemKey() 323 if (mShadeViewController.isFullyCollapsed()) { in handleSystemKey() 327 mShadeViewController.expand(true /* animate */); in handleSystemKey() 332 && !mShadeViewController.isExpandingOrCollapsing()) { in handleSystemKey() 352 mShadeViewController.getBarState())) { in onCameraLaunchGestureDetected() 391 mShadeViewController.isFullyCollapsed()); in onCameraLaunchGestureDetected() 549 if (mShadeViewController.isPanelExpanded()) { in togglePanel() [all …]
|
H A D | StatusBarKeyguardViewManager.java | 263 private ShadeViewController mShadeViewController; field in StatusBarKeyguardViewManager 419 mShadeViewController = shadeViewController; in registerCentralSurfaces() 469 mShadeViewController.postToView(() -> in registerListeners() 548 && (mShadeViewController.isExpanded() in beginShowingBouncer() 562 && !mShadeViewController.isUnlockHintRunning() in beginShowingBouncer() 766 mShadeViewController.resetViews(/* animate= */ !isOccluded); in reset() 934 mShadeViewController.startBouncerPreHideAnimation(); in startPreHideAnimation() 945 mShadeViewController.blockExpansionForCurrentTouch(); in startPreHideAnimation() 950 mShadeViewController.blockExpansionForCurrentTouch(); in blockPanelExpansionFromCurrentTouch() 1047 mShadeViewController.resetViewGroupFade(); in onKeyguardFadedAway() [all …]
|
H A D | StatusBarNotificationActivityStarter.java | 127 private final ShadeViewController mShadeViewController; field in StatusBarNotificationActivityStarter 199 mShadeViewController = shadeViewController; in StatusBarNotificationActivityStarter() 294 return animate || !mShadeViewController.isFullyCollapsed(); in handleNotificationClickAfterKeyguardDismissed() 446 mShadeViewController, in startNotificationIntent() 487 mShadeViewController, in startNotificationGutsIntent() 537 mShadeViewController, in startHistoryIntent()
|
H A D | HeadsUpAppearanceController.java | 77 private final ShadeViewController mShadeViewController; field in HeadsUpAppearanceController 140 mShadeViewController = shadeViewController; in HeadsUpAppearanceController() 180 return mShadeViewController.getShadeHeadsUpTracker(); in getShadeHeadsUpTracker()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/touch/ |
H A D | ShadeTouchHandler.java | 40 private final ShadeViewController mShadeViewController; field in ShadeTouchHandler 48 mShadeViewController = shadeViewController; in ShadeTouchHandler() 60 mShadeViewController.handleExternalTouch((MotionEvent) ev); in onSessionStart()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dreams/touch/ |
H A D | ShadeTouchHandlerTest.java | 52 ShadeViewController mShadeViewController; field in ShadeTouchHandlerTest 64 mTouchHandler = new ShadeTouchHandler(Optional.of(mCentralSurfaces), mShadeViewController, in setup() 111 verify(mShadeViewController).handleExternalTouch(motionEvent); in testEventPropagation()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
H A D | HeadsUpAppearanceControllerTest.java | 66 private final ShadeViewController mShadeViewController = field in HeadsUpAppearanceControllerTest 105 when(mShadeViewController.getShadeHeadsUpTracker()).thenReturn(mShadeHeadsUpTracker); in setUp() 117 mShadeViewController, in setUp() 201 mShadeViewController, in constructor_animationValuesUpdated()
|
H A D | CentralSurfacesCommandQueueCallbacksTest.java | 85 @Mock private ShadeViewController mShadeViewController; field in CentralSurfacesCommandQueueCallbacksTest 121 mShadeViewController, in setup() 267 verify(mShadeViewController).performHapticFeedback( in vibrateOnNavigationKeyDown_oneWayHapticsEnabled_usesPerformHapticFeedback()
|
H A D | DozeServiceHostTest.java | 93 @Mock private ShadeViewController mShadeViewController; field in DozeServiceHostTest 115 mShadeViewController, in setup()
|
H A D | StatusBarKeyguardViewManagerTest.java | 121 @Mock private ShadeViewController mShadeViewController; field in StatusBarKeyguardViewManagerTest 221 mShadeViewController, in setUp() 269 when(mShadeViewController.isUnlockHintRunning()).thenReturn(true); in onPanelExpansionChanged_neverShowsDuringHintAnimation()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/ |
H A D | SystemActionsTest.java | 69 private ShadeViewController mShadeViewController; field in SystemActionsTest 88 mShadeController, () -> mShadeViewController, mCentralSurfacesOptionalLazy, in setUp()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/fragment/ |
H A D | CollapsedStatusBarFragmentTest.java | 124 private ShadeViewController mShadeViewController; field in CollapsedStatusBarFragmentTest 313 when(mShadeViewController.shouldHideStatusBarIconsWhenExpanded()).thenReturn(true); in disable_shadeOpenAndShouldHide_everythingHidden() 329 when(mShadeViewController.shouldHideStatusBarIconsWhenExpanded()).thenReturn(false); in disable_shadeOpenButNotShouldHide_everythingShown() 346 when(mShadeViewController.shouldHideStatusBarIconsWhenExpanded()).thenReturn(true); in disable_shadeOpenAndShouldHide_thenShadeNotOpenAndDozingUpdate_everythingShown() 692 mShadeViewController, in instantiate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/ |
H A D | SystemActions.java | 192 private final Lazy<ShadeViewController> mShadeViewController; field in SystemActions 208 mShadeViewController = shadeViewController; in SystemActions() 337 && mShadeViewController.get().isPanelExpanded() in registerOrUnregisterDismissNotificationShadeAction()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/ |
H A D | CollapsedStatusBarFragment.java | 110 private final ShadeViewController mShadeViewController; field in CollapsedStatusBarFragment 246 mShadeViewController = shadeViewController; in CollapsedStatusBarFragment() 547 && mShadeViewController.shouldHideStatusBarIconsWhenExpanded()) { in shouldHideStatusBar()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
H A D | NavigationBar.java | 204 private final ShadeViewController mShadeViewController; field in NavigationBar 589 mShadeViewController = shadeViewController; in NavigationBar() 752 mView.setComponents(mShadeViewController); in onViewAttached() 1356 mShadeViewController.setQsScrimEnabled(!isVertical); in onVerticalChanged()
|