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