Lines Matching refs:boundingRect
1458 final Rect boundingRect = new Rect(); field in CellLayout.ViewCluster
1598 config.getBoundingRectForViews(views, boundingRect); in getBoundingRect()
1600 return boundingRect; in getBoundingRect()
1729 Rect boundingRect = new Rect(); in addViewsToTempLocation() local
1731 currentState.getBoundingRectForViews(views, boundingRect); in addViewsToTempLocation()
1739 … GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height()); in addViewsToTempLocation()
1740 int top = boundingRect.top; in addViewsToTempLocation()
1741 int left = boundingRect.left; in addViewsToTempLocation()
1751 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(), in addViewsToTempLocation()
1752 boundingRect.height(), direction, in addViewsToTempLocation()
1757 int deltaX = mTempLocation[0] - boundingRect.left; in addViewsToTempLocation()
1758 int deltaY = mTempLocation[1] - boundingRect.top; in addViewsToTempLocation()
2346 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) { in getViewsIntersectingRegion() argument
2347 if (boundingRect != null) { in getViewsIntersectingRegion()
2348 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY); in getViewsIntersectingRegion()
2361 if (boundingRect != null) { in getViewsIntersectingRegion()
2362 boundingRect.union(r1); in getViewsIntersectingRegion()