Lines Matching refs:boundingRect
1313 final Rect boundingRect = new Rect(); field in CellLayout.ViewCluster
1453 config.getBoundingRectForViews(views, boundingRect); in getBoundingRect()
1455 return boundingRect; in getBoundingRect()
1584 Rect boundingRect = new Rect(); in addViewsToTempLocation() local
1586 currentState.getBoundingRectForViews(views, boundingRect); in addViewsToTempLocation()
1594 … GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height()); in addViewsToTempLocation()
1595 int top = boundingRect.top; in addViewsToTempLocation()
1596 int left = boundingRect.left; in addViewsToTempLocation()
1606 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(), in addViewsToTempLocation()
1607 boundingRect.height(), direction, in addViewsToTempLocation()
1612 int deltaX = mTempLocation[0] - boundingRect.left; in addViewsToTempLocation()
1613 int deltaY = mTempLocation[1] - boundingRect.top; in addViewsToTempLocation()
2201 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) { in getViewsIntersectingRegion() argument
2202 if (boundingRect != null) { in getViewsIntersectingRegion()
2203 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY); in getViewsIntersectingRegion()
2216 if (boundingRect != null) { in getViewsIntersectingRegion()
2217 boundingRect.union(r1); in getViewsIntersectingRegion()