Searched refs:APPEARANCE_LOW_PROFILE_BARS (Results 1 – 9 of 9) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | InsetsFlags.java | 23 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS; 52 mask = APPEARANCE_LOW_PROFILE_BARS, 53 equals = APPEARANCE_LOW_PROFILE_BARS,
|
D | WindowInsetsController.java | 56 int APPEARANCE_LOW_PROFILE_BARS = 1 << 2; field 111 APPEARANCE_LOW_PROFILE_BARS,
|
D | ViewRootImpl.java | 80 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS; 3063 if ((appearanceControlled & APPEARANCE_LOW_PROFILE_BARS) == 0) { in adjustLayoutParamsForCompatibility() 3064 appearance &= ~APPEARANCE_LOW_PROFILE_BARS; in adjustLayoutParamsForCompatibility() 3066 ? APPEARANCE_LOW_PROFILE_BARS in adjustLayoutParamsForCompatibility()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/data/repository/ |
D | StatusBarModeRepositoryImplTest.kt | 23 import android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS 367 APPEARANCE_LOW_PROFILE_BARS, in statusBarAppearance_boundsChanged_appearanceReFetched() 368 listOf(AppearanceRegion(APPEARANCE_LOW_PROFILE_BARS, Rect(10, 20, 30, 40))) in statusBarAppearance_boundsChanged_appearanceReFetched() 453 appearance = APPEARANCE_LOW_PROFILE_BARS or APPEARANCE_OPAQUE_STATUS_BARS, in statusBarMode_appearanceLowProfileAndOpaque_lightsOut() 465 appearance = APPEARANCE_LOW_PROFILE_BARS, in statusBarMode_appearanceLowProfile_lightsOutTransparent() 545 private const val LETTERBOXED_APPEARANCE = APPEARANCE_LOW_PROFILE_BARS
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | LegacyLightsOutNotifController.java | 19 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS; 146 return 0 != (mAppearance & APPEARANCE_LOW_PROFILE_BARS); in areLightsOut()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/data/repository/ |
D | StatusBarModePerDisplayRepository.kt | 24 import android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS in <lambda>() 270 val lightsOutOpaque = APPEARANCE_LOW_PROFILE_BARS or APPEARANCE_OPAQUE_STATUS_BARS in toBarMode() 273 this and APPEARANCE_LOW_PROFILE_BARS != 0 -> StatusBarMode.LIGHTS_OUT_TRANSPARENT in toBarMode()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | LegacyLightsOutNotifControllerTest.java | 19 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS; 62 private static final int LIGHTS_OUT = APPEARANCE_LOW_PROFILE_BARS;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
D | NavBarHelper.java | 22 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS; 562 final int lightsOutOpaque = APPEARANCE_LOW_PROFILE_BARS | APPEARANCE_OPAQUE_NAVIGATION_BARS; in transitionMode() 567 } else if ((appearance & APPEARANCE_LOW_PROFILE_BARS) != 0) { in transitionMode()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayPolicy.java | 31 import static android.view.WindowInsetsController.APPEARANCE_LOW_PROFILE_BARS; 2425 || ((mLastAppearance ^ appearance) & APPEARANCE_LOW_PROFILE_BARS) != 0)) { 2427 isFullscreen || (appearance & APPEARANCE_LOW_PROFILE_BARS) != 0);
|