Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/policy/
DBackdropFrameRenderer.java372 final int rightInset = DecorView.getColorViewRightInset(stableInsets.right, 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/packages/SystemUI/src/com/android/systemui/recents/views/
DTaskViewHeader.java330 int rightInset = width - getMeasuredWidth(); in onTaskViewSizeChanged() local
349 mMoveTaskButton.setTranslationX(rightInset); in onTaskViewSizeChanged()
352 mDismissButton.setTranslationX(rightInset); in onTaskViewSizeChanged()
DTaskStackLayoutAlgorithm.java1061 public void getTaskStackBounds(Rect displayRect, Rect windowRect, int topInset, int rightInset, in getTaskStackBounds() argument
1064 windowRect.right - rightInset, windowRect.bottom); in getTaskStackBounds()
/frameworks/base/services/core/java/com/android/server/am/
DTaskRecord.java1496 int rightInset = overrideWidth ? 0 : inInsetBounds.right - mTmpRect2.right; in subtractNonDecorInsets() local
1498 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset); in subtractNonDecorInsets()
1507 int rightInset = overrideWidth ? 0 : inInsetBounds.right - mTmpRect2.right; 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
183 mRightInset = rightInset; in setOpticalInsets()
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java3898 int rightInset = taskBounds.right - mTmpRect.right; in calculateRelevantTaskInsets() local
3900 inOutInsets.set(leftInset, topInset, rightInset, bottomInset); in calculateRelevantTaskInsets()