Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBar.java972 final int barMode = barMode(mTransientShown, mAppearance); in restoreAppearanceAndTransientState() local
973 mNavigationBarMode = barMode; in restoreAppearanceAndTransientState()
980 true /* nbModeChanged */, barMode, false /* navbarColorManagedByIme */); in restoreAppearanceAndTransientState()
994 nbModeChanged = updateBarMode(barMode(mTransientShown, appearance)); in onSystemBarAttributesChanged()
1041 final int barMode = barMode(mTransientShown, mAppearance); in handleTransientChanged() local
1042 if (updateBarMode(barMode) && mLightBarController != null) { in handleTransientChanged()
1043 mLightBarController.onNavigationBarModeChanged(barMode); in handleTransientChanged()
1048 private boolean updateBarMode(int barMode) { in updateBarMode() argument
1049 if (mNavigationBarMode != barMode) { in updateBarMode()
1050 mNavigationBarMode = barMode; in updateBarMode()
[all …]
DNavigationBarController.java429 public void transitionTo(int displayId, @TransitionMode int barMode, boolean animate) { in transitionTo() argument
432 navBar.transitionTo(barMode, animate); in transitionTo()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarController.java190 private static boolean isLight(int appearance, int barMode, int flag) { in isLight() argument
191 final boolean isTransparentBar = (barMode == MODE_TRANSPARENT in isLight()
192 || barMode == MODE_LIGHTS_OUT_TRANSPARENT); in isLight()
DStatusBar.java2522 barModeChanged = updateBarMode(barMode(mTransientShown, appearance)); in onSystemBarAttributesChanged()
2569 final int barMode = barMode(mTransientShown, mAppearance); in handleTransientChanged() local
2570 if (updateBarMode(barMode)) { in handleTransientChanged()
2571 mLightBarController.onStatusBarModeChanged(barMode); in handleTransientChanged()
2576 private boolean updateBarMode(int barMode) { in updateBarMode() argument
2577 if (mStatusBarMode != barMode) { in updateBarMode()
2578 mStatusBarMode = barMode; in updateBarMode()
2586 private static @TransitionMode int barMode(boolean isTransient, int appearance) { in barMode() method
3406 int barMode = "opaque".equals(mode) ? MODE_OPAQUE :
3412 if (barMode != -1) {
[all …]