Lines Matching refs:boundingRect
1590 Rect boundingRect = new Rect();
1733 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1736 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1740 return boundingRect;
1911 Rect boundingRect = null;
1915 if (boundingRect == null) {
1916 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1918 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY);
1928 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()];
1929 int top = boundingRect.top;
1930 int left = boundingRect.left;
1940 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1941 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation);
1945 int deltaX = mTempLocation[0] - boundingRect.left;
1946 int deltaY = mTempLocation[1] - boundingRect.top;
2513 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2514 if (boundingRect != null) {
2515 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2528 if (boundingRect != null) {
2529 boundingRect.union(r1);