Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/
DCellLayout.java1476 Rect boundingRect = new Rect(); field in CellLayout.ViewCluster
1619 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1622 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1626 return boundingRect; in getBoundingRect()
1797 Rect boundingRect = null; in addViewsToTempLocation() local
1801 if (boundingRect == null) { in addViewsToTempLocation()
1802 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1804 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1814 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()]; in addViewsToTempLocation()
1815 int top = boundingRect.top; in addViewsToTempLocation()
[all …]
/packages/apps/Launcher2/src/com/android/launcher2/
DCellLayout.java1602 Rect boundingRect = new Rect(); field in CellLayout.ViewCluster
1745 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1748 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1752 return boundingRect; in getBoundingRect()
1923 Rect boundingRect = null; in addViewsToTempLocation() local
1927 if (boundingRect == null) { in addViewsToTempLocation()
1928 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1930 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1940 boolean[][] blockOccupied = new boolean[boundingRect.width()][boundingRect.height()]; in addViewsToTempLocation()
1941 int top = boundingRect.top; in addViewsToTempLocation()
[all …]