Home
last modified time | relevance | path

Searched refs:mBarState (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationPanelViewController.java411 private int mBarState; field in NotificationPanelViewController
1484 mBarState, in reInflateViews()
1487 mBarState); in reInflateViews()
1491 mBarState, in reInflateViews()
1494 mBarState); in reInflateViews()
1498 mBarState, in reInflateViews()
1501 mBarState); in reInflateViews()
1505 setKeyguardBottomAreaVisibility(mBarState, false); in reInflateViews()
2414 return isFullyCollapsed() || mBarState != StatusBarState.SHADE; in shouldGestureWaitForTouchSlop()
2429 if (mBarState == StatusBarState.SHADE_LOCKED) { in maybeAnimateBottomAreaAlpha()
[all …]
DQuickSettingsControllerImpl.java173 private int mBarState; field in QuickSettingsControllerImpl
662 boolean keyguardShowing = mBarState == KEYGUARD; in shouldQuickSettingsIntercept()
692 if (mBarState == KEYGUARD && !mKeyguardBypassController.getBypassEnabled()) { in getHeaderTranslation()
698 if (mBarState == SHADE) { in getHeaderTranslation()
702 if (mKeyguardBypassController.getBypassEnabled() && mBarState == KEYGUARD) { in getHeaderTranslation()
718 if (mCollapsedOnDown || mBarState == KEYGUARD || getExpanded()) { in canPanelCollapseOnQQS()
891 mBarState = barState; in setBarState()
987 mBarState != KEYGUARD && (!qsFullScreen || mExpansionFromOverscroll)); in setQsFullScreen()
1050 float shadeExpandedFraction = mBarState == KEYGUARD in updateExpansion()
1111 if (mBarState == KEYGUARD || mSplitShadeEnabled) { in updateMinHeight()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardQsUserSwitchController.java88 private int mBarState; field in KeyguardQsUserSwitchController
96 int oldState = mBarState;
97 mBarState = newState;
DKeyguardUserSwitcherController.java90 private int mBarState; field in KeyguardUserSwitcherController
127 int oldState = mBarState;
128 mBarState = newState;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutController.java213 private int mBarState; field in NotificationStackScrollLayoutController
245 if (newBarState != mBarState) {
386 mBarState = newState;
387 mView.setStatusBarState(mBarState);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java127 @Mock private SysuiStatusBarStateController mBarState; field in NotificationStackScrollLayoutTest
177 mDependency.injectTestDependency(SysuiStatusBarStateController.class, mBarState); in setUp()