/frameworks/base/core/tests/coretests/src/android/view/ |
D | PendingInsetsControllerTest.java | 20 import static android.view.WindowInsets.Type.systemBars; 69 mPendingInsetsController.show(systemBars()); in testShow() 71 verify(mReplayedController).show(eq(systemBars())); in testShow() 77 mPendingInsetsController.show(systemBars()); in testShow_direct() 78 verify(mReplayedController).show(eq(systemBars())); in testShow_direct() 83 mPendingInsetsController.hide(systemBars()); in testHide() 85 verify(mReplayedController).hide(eq(systemBars())); in testHide() 91 mPendingInsetsController.hide(systemBars()); in testHide_direct() 92 verify(mReplayedController).hide(eq(systemBars())); in testHide_direct() 101 systemBars(), 0, new LinearInterpolator(), cancellationSignal, listener); in testControl() [all …]
|
D | InsetsAnimationControlImplTest.java | 22 import static android.view.WindowInsets.Type.systemBars; 123 new Rect(0, 0, 500, 500), mInsetsState, mMockListener, systemBars(), in setup() 134 assertEquals(systemBars(), mController.getTypes()); in testGetters() 240 verify(mMockController).reportPerceptible(systemBars(), false); in testPerceptible_insets() 243 verify(mMockController).reportPerceptible(systemBars(), true); in testPerceptible_insets() 249 verify(mMockController).reportPerceptible(systemBars(), false); in testPerceptible_alpha() 252 verify(mMockController).reportPerceptible(systemBars(), true); in testPerceptible_alpha()
|
D | WindowInsetsTest.java | 20 import static android.view.WindowInsets.Type.systemBars; 64 systemBars(), true /* compatIgnoreVisibility */); in compatInsets_layoutStable()
|
D | ViewRootImplTest.java | 96 assertEquals(0, attrs.getFitInsetsTypes() & Type.systemBars()); in adjustLayoutParamsForCompatibility_layoutHideNavigation() 121 assertEquals(Type.systemBars() | Type.ime(), attrs.getFitInsetsTypes()); in adjustLayoutParamsForCompatibility_fitSystemBars()
|
D | InsetsControllerTest.java | 289 int types = Type.navigationBars() | Type.systemBars(); in testShowHideSelectively() 321 int types = Type.navigationBars() | Type.systemBars(); in testShowHideSingle() 363 mController.hide(Type.systemBars()); in testShowHideMultiple() 372 mController.show(Type.systemBars()); in testShowHideMultiple() 380 int types = Type.navigationBars() | Type.systemBars(); in testShowHideMultiple() 391 mController.hide(Type.systemBars()); in testShowHideMultiple() 410 int types = Type.navigationBars() | Type.systemBars(); in testShowMultipleHideOneByOne() 419 mController.hide(Type.systemBars()); in testShowMultipleHideOneByOne()
|
D | InsetsStateTest.java | 102 … assertEquals(Insets.of(0, 0, 0, 100), insets.getInsetsIgnoringVisibility(Type.systemBars())); in testCalculateInsets_imeAndNav()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarWindowView.java | 19 import static android.view.WindowInsets.Type.systemBars; 56 final Insets insets = windowInsets.getInsetsIgnoringVisibility(systemBars()); in onApplyWindowInsets()
|
D | NotificationShadeWindowView.java | 19 import static android.view.WindowInsets.Type.systemBars; 86 final Insets insets = windowInsets.getInsetsIgnoringVisibility(systemBars()); in onApplyWindowInsets()
|
/frameworks/base/core/java/android/service/dreams/ |
D | DreamActivity.java | 67 getWindow().getInsetsController().hide(WindowInsets.Type.systemBars()); in onResume()
|
/frameworks/base/core/java/android/view/ |
D | WindowInsets.java | 33 import static android.view.WindowInsets.Type.systemBars; 132 isRound, alwaysConsumeSystemBars, displayCutout, systemBars(), in WindowInsets() 238 systemBars(), false /* compatIgnoreVisibility */); in WindowInsets() 1278 systemBars(), false /* compatIgnoreVisibility */); in build() 1459 public static @InsetsType int systemBars() { in systemBars() method in WindowInsets.Type 1479 return (type & Type.systemBars()) != 0 in isVisibleInsetsType()
|
D | WindowManager.java | 2875 private @InsetsType int mFitInsetsTypes = Type.systemBars();
|
D | ViewRootImpl.java | 2122 types &= ~Type.systemBars(); in adjustLayoutParamsForCompatibility() 2126 } else if ((types & Type.systemBars()) == Type.systemBars()) { in adjustLayoutParamsForCompatibility()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
D | DetailDialog.kt | 100 setPadding(l, t, r, insets.getInsets(Type.systemBars()).bottom) in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityContainer.java | 21 import static android.view.WindowInsets.Type.systemBars; 521 int bottomInset = insets.getInsetsIgnoringVisibility(systemBars()).bottom; in onApplyWindowInsets()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TaskSnapshotController.java | 620 WindowInsets.Type.systemBars()).toRect();
|
D | DisplayPolicy.java | 3227 int insetsTypesToShow = Type.systemBars();
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | DecorView.java | 1097 final Insets systemBarInsets = insets.getInsets(WindowInsets.Type.systemBars()); in updateColorViews() 1099 WindowInsets.Type.systemBars()); in updateColorViews() 2302 rootInsets.getInsets(WindowInsets.Type.systemBars())); in onWindowDragResizeStart()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | DisplayPolicyLayoutTests.java | 539 mWindow.mAttrs.setFitInsetsTypes(Type.systemBars() & ~Type.statusBars()); in layoutWindowLw_withDisplayCutout_floatingInScreen()
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 23940 HSPLandroid/view/WindowInsets$Type;->systemBars()I
|
/frameworks/base/api/ |
D | current.txt | 55505 method public static int systemBars();
|