Home
last modified time | relevance | path

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

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DSystemBarHelper.java318 int bottomInset = insets.getSystemWindowInsetBottom(); in onApplyWindowInsets() local
330 bottomInset = 0; in onApplyWindowInsets()
338 bottomInset in onApplyWindowInsets()
/frameworks/base/core/java/com/android/internal/policy/
DBackdropFrameRenderer.java370 final int bottomInset = DecorView.getColorViewBottomInset(stableInsets.bottom, in drawColorViews() local
383 final int size = DecorView.getNavBarSize(bottomInset, rightInset); in drawColorViews()
384 if (DecorView.isNavBarToRightEdge(bottomInset, rightInset)) { in drawColorViews()
DDecorView.java994 static boolean isNavBarToRightEdge(int bottomInset, int rightInset) { in isNavBarToRightEdge() argument
995 return bottomInset == 0 && rightInset > 0; in isNavBarToRightEdge()
998 static int getNavBarSize(int bottomInset, int rightInset) { in getNavBarSize() argument
999 return isNavBarToRightEdge(bottomInset, rightInset) ? rightInset : bottomInset; in getNavBarSize()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java371 int bottomInset = 0;
416 bottomInset = mActionBarHeight;
418 bottomInset = mActionBarBottom.getMeasuredHeight();
431 mContentInsets.bottom += bottomInset;
434 mInnerInsets.bottom += bottomInset;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DActionBarOverlayLayout.java336 int bottomInset = 0; in onMeasure() local
375 mContentInsets.bottom += bottomInset; in onMeasure()
378 mInnerInsets.bottom += bottomInset; in onMeasure()
/frameworks/base/services/core/java/com/android/server/am/
DTaskRecord.java1497 int bottomInset = overrideHeight ? 0 : inInsetBounds.bottom - mTmpRect2.bottom; in subtractNonDecorInsets() local
1498 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset); in subtractNonDecorInsets()
1508 int bottomInset = overrideHeight ? 0 : inInsetBounds.bottom - mTmpRect2.bottom; in subtractStableInsets() local
1509 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset); in subtractStableInsets()
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DGridLayoutManager.java180 void setOpticalInsets(int leftInset, int topInset, int rightInset, int bottomInset) { in setOpticalInsets() argument
184 mBottomInset = bottomInset; in setOpticalInsets()
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java3899 int bottomInset = taskBounds.bottom - mTmpRect.bottom; in calculateRelevantTaskInsets() local
3900 inOutInsets.set(leftInset, topInset, rightInset, bottomInset); in calculateRelevantTaskInsets()