Searched refs:boundingRect (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DCellLayout.java1412 Rect boundingRect = new Rect(); field in class:CellLayout.ViewCluster
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
2269 getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY, View dragView, Rect boundingRect, ArrayList<View> intersectingViews) argument
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java1602 Rect boundingRect = new Rect(); field in class:CellLayout.ViewCluster
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
2505 getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY, View dragView, Rect boundingRect, ArrayList<View> intersectingViews) argument
[all...]

Completed in 99 milliseconds