Searched defs:boundingRect (Results 1 - 2 of 2) sorted by relevance
/packages/apps/Launcher2/src/com/android/launcher2/ |
H A D | CellLayout.java | 1602 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...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
H A D | CellLayout.java | 1281 final Rect boundingRect = new Rect(); field in class:CellLayout.ViewCluster 1421 config.getBoundingRectForViews(views, boundingRect); 1423 return boundingRect; 1552 Rect boundingRect = new Rect(); 1554 currentState.getBoundingRectForViews(views, boundingRect); 1562 GridOccupancy blockOccupied = new GridOccupancy(boundingRect.width(), boundingRect.height()); 1563 int top = boundingRect.top; 1564 int left = boundingRect.left; 1574 findNearestArea(boundingRect 2156 getViewsIntersectingRegion(int cellX, int cellY, int spanX, int spanY, View dragView, Rect boundingRect, ArrayList<View> intersectingViews) argument [all...] |
Completed in 19 milliseconds