Home | History | Annotate | Download | only in launcher2

Lines Matching defs:boundingRect

1621     private boolean addViewInDirection(ArrayList<View> views, Rect boundingRect, int[] direction,
1626 Rect r0 = new Rect(boundingRect);
1681 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1690 private void completeSetOfViewsToMove(ArrayList<View> views, Rect boundingRect, int[] direction,
1692 Rect r0 = new Rect(boundingRect);
1709 minRuns = Math.max(Math.abs(boundingRect.width() - r0.width()),
1710 Math.abs(boundingRect.height() - r0.height())) + 1;
1719 boundingRect.union(r0);
1727 Rect boundingRect = null;
1731 if (boundingRect == null) {
1732 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1734 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1741 completeSetOfViewsToMove(dup, boundingRect, direction, mTmpOccupied, dragView,
1751 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1752 int top = boundingRect.top;
1753 int left = boundingRect.left;
1764 findNearestAreaInDirection(boundingRect.left, boundingRect.top, boundingRect.width(),
1765 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
1767 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1768 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
1773 int deltaX = mTempLocation[0] - boundingRect.left;
1774 int deltaY = mTempLocation[1] - boundingRect.top;
2321 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2322 if (boundingRect != null) {
2323 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2336 if (boundingRect != null) {
2337 boundingRect.union(r1);