Home
last modified time | relevance | path

Searched refs:APPEARANCE_LOW_PROFILE_BARS (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/android/view/
DInsetsFlags.java21 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
49 mask = APPEARANCE_LOW_PROFILE_BARS,
50 equals = APPEARANCE_LOW_PROFILE_BARS,
DWindowInsetsController.java55 int APPEARANCE_LOW_PROFILE_BARS = 1 << 2; field
87 APPEARANCE_LOW_PROFILE_BARS, APPEARANCE_LIGHT_STATUS_BARS,
DViewRootImpl.java59 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
2511 inOutParams.insetsFlags.appearance |= APPEARANCE_LOW_PROFILE_BARS; in adjustLayoutParamsForCompatibility()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightsOutNotifController.java19 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
140 return 0 != (mAppearance & APPEARANCE_LOW_PROFILE_BARS); in areLightsOut()
DCentralSurfacesImpl.java26 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
2127 final int lightsOutOpaque = APPEARANCE_LOW_PROFILE_BARS | APPEARANCE_OPAQUE_STATUS_BARS; in barMode()
2134 } else if ((appearance & APPEARANCE_LOW_PROFILE_BARS) != 0) { in barMode()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DSystemBarAttributesListenerTest.kt10 import android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS
217 LetterboxAppearance(/* appearance= */ APPEARANCE_LOW_PROFILE_BARS, arrayOf())
DLightsOutNotifControllerTest.java19 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
58 private static final int LIGHTS_OUT = APPEARANCE_LOW_PROFILE_BARS;
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavBarHelper.java22 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
524 final int lightsOutOpaque = APPEARANCE_LOW_PROFILE_BARS | APPEARANCE_OPAQUE_NAVIGATION_BARS; in transitionMode()
529 } else if ((appearance & APPEARANCE_LOW_PROFILE_BARS) != 0) { in transitionMode()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarStateControllerImpl.java21 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
552 boolean dim = (appearance & APPEARANCE_LOW_PROFILE_BARS) != 0; in setSystemBarAttributes()
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayPolicy.java35 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS;
2334 && ((mLastAppearance ^ appearance) & APPEARANCE_LOW_PROFILE_BARS) != 0) { in updateSystemBarAttributes()
2336 isFullscreen || (appearance & APPEARANCE_LOW_PROFILE_BARS) != 0); in updateSystemBarAttributes()