Home | History | Annotate | Download | only in launcher3

Lines Matching defs:boundingRect

1476         Rect boundingRect = new Rect();
1619 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1622 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1626 return boundingRect;
1797 Rect boundingRect = null;
1801 if (boundingRect == null) {
1802 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1804 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1814 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1815 int top = boundingRect.top;
1816 int left = boundingRect.left;
1826 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1827 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
1831 int deltaX = mTempLocation[0] - boundingRect.left;
1832 int deltaY = mTempLocation[1] - boundingRect.top;
2399 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2400 if (boundingRect != null) {
2401 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2414 if (boundingRect != null) {
2415 boundingRect.union(r1);