Home | History | Annotate | Download | only in launcher2

Lines Matching full:boundingrect

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