Lines Matching defs:outBounds

424     void getBoundsForNewConfiguration(Rect outBounds) {
425 outBounds.set(mBoundsAfterRotation);
469 private void snapDockedStackAfterRotation(Rect outBounds) {
475 final int dockSide = getDockSide(outBounds);
476 final int dividerPosition = DockedDividerUtils.calculatePositionForBounds(outBounds,
484 mService.mPolicy.getStableInsetsLw(rotation, displayWidth, displayHeight, outBounds);
487 dividerSize, orientation == Configuration.ORIENTATION_PORTRAIT, outBounds);
492 outBounds, displayInfo.logicalWidth, displayInfo.logicalHeight,
677 void getStackDockedModeBoundsLocked(Rect outBounds, boolean ignoreVisibility) {
680 outBounds.set(mBounds);
694 mDisplayContent.getLogicalDisplayRect(outBounds);
702 outBounds.set(mBounds);
709 getStackDockedModeBounds(mTmpRect, outBounds, mStackId, mTmpRect2,
717 * @param outBounds Output bounds that should be used for the stack.
725 Rect displayRect, Rect outBounds, int stackId, Rect dockedBounds, int dockDividerWidth,
730 outBounds.set(displayRect);
733 outBounds.set(mService.mDockedStackCreateBounds);
752 outBounds.right = position;
754 outBounds.bottom = position;
758 outBounds.left = position + dockDividerWidth;
760 outBounds.top = position + dockDividerWidth;
769 outBounds.right = dockedBounds.left - dockDividerWidth;
771 outBounds.bottom = dockedBounds.top - dockDividerWidth;
775 outBounds.left = dockedBounds.right + dockDividerWidth;
777 outBounds.top = dockedBounds.bottom + dockDividerWidth;
780 DockedDividerUtils.sanitizeStackBounds(outBounds, !dockOnTopOrLeft);