Lines Matching refs:c
1560 CellAndSpan c = currentState.map.get(v); in addViewToTempLocation() local
1562 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false); in addViewToTempLocation()
1565 findNearestArea(c.x, c.y, c.spanX, c.spanY, direction, mTmpOccupied, null, mTempLocation); in addViewToTempLocation()
1568 c.x = mTempLocation[0]; in addViewToTempLocation()
1569 c.y = mTempLocation[1]; in addViewToTempLocation()
1572 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true); in addViewToTempLocation()
1702 CellAndSpan c = config.map.get(v); in shift() local
1705 c.x -= delta; in shift()
1708 c.x += delta; in shift()
1711 c.y -= delta; in shift()
1715 c.y += delta; in shift()
1731 CellAndSpan c = config.map.get(v); in getBoundingRect() local
1733 boundingRect.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1736 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in getBoundingRect()
1843 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation() local
1844 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false); in pushViewsToTempLocation()
1871 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation() local
1874 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false); in pushViewsToTempLocation()
1899 CellAndSpan c = currentState.map.get(v); in pushViewsToTempLocation() local
1900 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true); in pushViewsToTempLocation()
1914 CellAndSpan c = currentState.map.get(v); in addViewsToTempLocation() local
1916 boundingRect = new Rect(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1918 boundingRect.union(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in addViewsToTempLocation()
1924 CellAndSpan c = currentState.map.get(v); in addViewsToTempLocation() local
1925 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, false); in addViewsToTempLocation()
1934 CellAndSpan c = currentState.map.get(v); in addViewsToTempLocation() local
1935 markCellsForView(c.x - left, c.y - top, c.spanX, c.spanY, blockOccupied, true); in addViewsToTempLocation()
1948 CellAndSpan c = currentState.map.get(v); in addViewsToTempLocation() local
1949 c.x += deltaX; in addViewsToTempLocation()
1950 c.y += deltaY; in addViewsToTempLocation()
1957 CellAndSpan c = currentState.map.get(v); in addViewsToTempLocation() local
1958 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true); in addViewsToTempLocation()
2074 CellAndSpan c = solution.map.get(ignoreView); in rearrangementExists() local
2075 if (c != null) { in rearrangementExists()
2076 c.x = cellX; in rearrangementExists()
2077 c.y = cellY; in rearrangementExists()
2084 CellAndSpan c = solution.map.get(child); in rearrangementExists() local
2086 r1.set(c.x, c.y, c.x + c.spanX, c.y + c.spanY); in rearrangementExists()
2191 CellAndSpan c; in copyCurrentStateToSolution() local
2193 c = new CellAndSpan(lp.tmpCellX, lp.tmpCellY, lp.cellHSpan, lp.cellVSpan); in copyCurrentStateToSolution()
2195 c = new CellAndSpan(lp.cellX, lp.cellY, lp.cellHSpan, lp.cellVSpan); in copyCurrentStateToSolution()
2197 solution.add(child, c); in copyCurrentStateToSolution()
2213 CellAndSpan c = solution.map.get(child); in copySolutionToTempState() local
2214 if (c != null) { in copySolutionToTempState()
2215 lp.tmpCellX = c.x; in copySolutionToTempState()
2216 lp.tmpCellY = c.y; in copySolutionToTempState()
2217 lp.cellHSpan = c.spanX; in copySolutionToTempState()
2218 lp.cellVSpan = c.spanY; in copySolutionToTempState()
2219 markCellsForView(c.x, c.y, c.spanX, c.spanY, mTmpOccupied, true); in copySolutionToTempState()
2240 CellAndSpan c = solution.map.get(child); in animateItemsToSolution() local
2241 if (c != null) { in animateItemsToSolution()
2242 animateChildToPosition(child, c.x, c.y, REORDER_ANIMATION_DURATION, 0, in animateItemsToSolution()
2244 markCellsForView(c.x, c.y, c.spanX, c.spanY, occupied, true); in animateItemsToSolution()
2261 CellAndSpan c = solution.map.get(child); in beginOrAdjustReorderPreviewAnimations() local
2266 if (c != null && !skip) { in beginOrAdjustReorderPreviewAnimations()
2268 lp.cellY, c.x, c.y, c.spanX, c.spanY); in beginOrAdjustReorderPreviewAnimations()
3262 public LayoutParams(Context c, AttributeSet attrs) { in LayoutParams() argument
3263 super(c, attrs); in LayoutParams()