Home
last modified time | relevance | path

Searched refs:bottomInset (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DSystemBarHelper.java332 int bottomInset = insets.getSystemWindowInsetBottom(); in onApplyWindowInsets() local
342 bottomInset = 0; in onApplyWindowInsets()
349 bottomInset); in onApplyWindowInsets()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java381 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/
DWmDisplayCutout.java120 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/
DDisplayCutout.java686 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/
DDecorView.java1073 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/
DBubbleExpandedView.java453 int bottomInset = getRootWindowInsets() != null in getMaxExpandedHeight() local
457 - mPointerMargin - bottomInset; in getMaxExpandedHeight()
/frameworks/base/core/java/com/android/internal/app/
DChooserActivity.java2546 final int bottomInset = mSystemWindowInsets != null
2548 int offset = bottomInset;
2590 - requiredExpansionHeight - topInset - bottomInset;