Searched refs:bottomInset (Results 1 – 7 of 7) sorted by relevance
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/ |
D | SystemBarHelper.java | 332 int bottomInset = insets.getSystemWindowInsetBottom(); in onApplyWindowInsets() local 342 bottomInset = 0; in onApplyWindowInsets() 349 bottomInset); in onApplyWindowInsets()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarOverlayLayout.java | 381 int bottomInset = 0; 426 bottomInset = mActionBarHeight; 428 bottomInset = mActionBarBottom.getMeasuredHeight(); 441 mContentInsets.bottom += bottomInset; 443 mInnerInsets = mInnerInsets.inset(0 /* left */, topInset, 0 /* right */, bottomInset); 450 mInnerInsets.getSystemWindowInsetBottom() + bottomInset
|
/frameworks/base/services/core/java/com/android/server/wm/utils/ |
D | WmDisplayCutout.java | 120 int bottomInset = findInsetForSide(displaySize, boundingRects, Gravity.BOTTOM); in computeSafeInsets() local 121 return new Rect(0, topInset, 0, bottomInset); in computeSafeInsets()
|
/frameworks/base/core/java/android/view/ |
D | DisplayCutout.java | 686 final int bottomInset; in pathAndDisplayCutoutFromSpec() local 701 bottomInset = displayHeight - boundBottom.top; in pathAndDisplayCutoutFromSpec() 703 bottomInset = 0; in pathAndDisplayCutoutFromSpec() 706 Rect safeInset = new Rect(0, topInset, 0, bottomInset); in pathAndDisplayCutoutFromSpec()
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | DecorView.java | 1073 public static boolean isNavBarToRightEdge(int bottomInset, int rightInset) { in isNavBarToRightEdge() argument 1074 return bottomInset == 0 && rightInset > 0; in isNavBarToRightEdge() 1077 public static boolean isNavBarToLeftEdge(int bottomInset, int leftInset) { in isNavBarToLeftEdge() argument 1078 return bottomInset == 0 && leftInset > 0; in isNavBarToLeftEdge() 1081 public static int getNavBarSize(int bottomInset, int rightInset, int leftInset) { in getNavBarSize() argument 1082 return isNavBarToRightEdge(bottomInset, rightInset) ? rightInset in getNavBarSize() 1083 : isNavBarToLeftEdge(bottomInset, leftInset) ? leftInset : bottomInset; in getNavBarSize() 1088 final int bottomInset = in getNavigationBarRect() local 1094 final int size = getNavBarSize(bottomInset, rightInset, leftInset); in getNavigationBarRect() 1095 if (isNavBarToRightEdge(bottomInset, rightInset)) { in getNavigationBarRect() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/ |
D | BubbleExpandedView.java | 453 int bottomInset = getRootWindowInsets() != null in getMaxExpandedHeight() local 457 - mPointerMargin - bottomInset; in getMaxExpandedHeight()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | ChooserActivity.java | 2546 final int bottomInset = mSystemWindowInsets != null 2548 int offset = bottomInset; 2590 - requiredExpansionHeight - topInset - bottomInset;
|