Lines Matching refs:boundingRect

1602         Rect boundingRect = new Rect();  field in CellLayout.ViewCluster
1745 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1748 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1752 return boundingRect; in getBoundingRect()
1923 Rect boundingRect = null; in addViewsToTempLocation() local
1927 if (boundingRect == null) { in addViewsToTempLocation()
1928 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1930 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1940 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()]; in addViewsToTempLocation()
1941 int top = boundingRect.top; in addViewsToTempLocation()
1942 int left = boundingRect.left; in addViewsToTempLocation()
1952 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(), in addViewsToTempLocation()
1953 boundingRect.height(), direction, mTmpOccupied, blockOccupied, mTempLocation); in addViewsToTempLocation()
1957 int deltaX = mTempLocation[0] - boundingRect.left; in addViewsToTempLocation()
1958 int deltaY = mTempLocation[1] - boundingRect.top; in addViewsToTempLocation()
2506 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) { in getViewsIntersectingRegion() argument
2507 if (boundingRect != null) { in getViewsIntersectingRegion()
2508 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY); in getViewsIntersectingRegion()
2521 if (boundingRect != null) { in getViewsIntersectingRegion()
2522 boundingRect.union(r1); in getViewsIntersectingRegion()