Searched defs:bottomInset (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java1035 public static boolean isNavBarToRightEdge(int bottomInset, int rightInset) { argument
1036 return bottomInset == 0 && rightInset > 0;
1039 public static boolean isNavBarToLeftEdge(int bottomInset, int leftInset) { argument
1040 return bottomInset == 0 && leftInset > 0;
1043 public static int getNavBarSize(int bottomInset, int rightInset, int leftInset) { argument
1044 return isNavBarToRightEdge(bottomInset, rightInset) ? rightInset
1045 : isNavBarToLeftEdge(bottomInset, leftInset) ? leftInset : bottomInset;
1050 final int bottomInset = getColorViewBottomInset(stableInsets.bottom, contentInsets.bottom);
1053 final int size = getNavBarSize(bottomInset, rightInse
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java185 void setOpticalInsets(int leftInset, int topInset, int rightInset, int bottomInset) { argument
189 mBottomInset = bottomInset;

Completed in 110 milliseconds