Home | History | Annotate | Download | only in recents

Lines Matching refs:windowRect

135                 Rect windowRect = getWindowRect(null /* windowRectOverride */);
136 if (windowRect.isEmpty()) {
154 updateDummyStackViewLayout(mBackgroundLayoutAlgorithm, stack, windowRect);
733 TaskStack stack, Rect windowRect) {
743 windowRect.bottom -= systemInsets.bottom;
746 calculateWindowStableInsets(systemInsets, windowRect, displayRect);
747 windowRect.offsetTo(0, 0);
752 stackLayout.getTaskStackBounds(displayRect, windowRect, systemInsets.top,
755 stackLayout.initialize(displayRect, windowRect, mTmpBounds,
776 Rect windowRect = getWindowRect(windowRectOverride);
779 updateDummyStackViewLayout(mDummyStackView.getStackAlgorithm(), stack, windowRect);
787 gridLayout.initialize(windowRect);
821 private void calculateWindowStableInsets(Rect inOutInsets, Rect windowRect, Rect displayRect) {
828 Rect windowRectWithInsets = new Rect(windowRect);
830 inOutInsets.left = windowRectWithInsets.left - windowRect.left;
831 inOutInsets.top = windowRectWithInsets.top - windowRect.top;
832 inOutInsets.right = windowRect.right - windowRectWithInsets.right;
833 inOutInsets.bottom = windowRect.bottom - windowRectWithInsets.bottom;