Home | History | Annotate | Download | only in launcher3

Lines Matching refs:boundingRect

1412         Rect boundingRect = new Rect();
1552 config.getBoundingRectForViews(views, boundingRect);
1554 return boundingRect;
1683 Rect boundingRect = new Rect();
1685 currentState.getBoundingRectForViews(views, boundingRect);
1693 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height());
1694 int top = boundingRect.top;
1695 int left = boundingRect.left;
1705 findNearestArea(boundingRect.left, boundingRect.top, boundingRect.width(),
1706 boundingRect.height(), direction,
1711 int deltaX = mTempLocation[0] - boundingRect.left;
1712 int deltaY = mTempLocation[1] - boundingRect.top;
2270 View dragView, Rect boundingRect, ArrayList<View> intersectingViews) {
2271 if (boundingRect != null) {
2272 boundingRect.set(cellX, cellY, cellX + spanX, cellY + spanY);
2285 if (boundingRect != null) {
2286 boundingRect.union(r1);