Home
last modified time | relevance | path

Searched refs:inOutBounds (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DTaskStack.java435 private void repositionDockedStackAfterRotation(Rect inOutBounds) { in repositionDockedStackAfterRotation() argument
436 int dockSide = getDockSide(inOutBounds); in repositionDockedStackAfterRotation()
444 int movement = inOutBounds.left; in repositionDockedStackAfterRotation()
445 inOutBounds.left -= movement; in repositionDockedStackAfterRotation()
446 inOutBounds.right -= movement; in repositionDockedStackAfterRotation()
449 movement = mTmpRect.right - inOutBounds.right; in repositionDockedStackAfterRotation()
450 inOutBounds.left += movement; in repositionDockedStackAfterRotation()
451 inOutBounds.right += movement; in repositionDockedStackAfterRotation()
454 movement = inOutBounds.top; in repositionDockedStackAfterRotation()
455 inOutBounds.top -= movement; in repositionDockedStackAfterRotation()
[all …]
DWindowManagerService.java11018 public void subtractStableInsets(Rect inOutBounds) { in subtractStableInsets() argument
11023 subtractInsets(mTmpRect, mTmpRect2, inOutBounds); in subtractStableInsets()
11034 public void subtractNonDecorInsets(Rect inOutBounds) { in subtractNonDecorInsets() argument
11039 subtractInsets(mTmpRect, mTmpRect2, inOutBounds); in subtractNonDecorInsets()
11043 void subtractInsets(Rect display, Rect insets, Rect inOutBounds) { in subtractInsets() argument
11046 inOutBounds.intersect(mTmpRect3); in subtractInsets()
/frameworks/base/services/core/java/com/android/server/am/
DTaskRecord.java1490 private void subtractNonDecorInsets(Rect inOutBounds, Rect inInsetBounds, in subtractNonDecorInsets() argument
1498 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset); in subtractNonDecorInsets()
1501 private void subtractStableInsets(Rect inOutBounds, Rect inInsetBounds, in subtractStableInsets() argument
1509 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset); in subtractStableInsets()