Home
last modified time | relevance | path

Searched refs:cellInfo (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DCellLayout.java712 final CellInfo cellInfo = mCellInfo; in setTagToCellInfoForPoint() local
738 cellInfo.cell = child; in setTagToCellInfoForPoint()
739 cellInfo.cellX = lp.cellX; in setTagToCellInfoForPoint()
740 cellInfo.cellY = lp.cellY; in setTagToCellInfoForPoint()
741 cellInfo.spanX = lp.cellHSpan; in setTagToCellInfoForPoint()
742 cellInfo.spanY = lp.cellVSpan; in setTagToCellInfoForPoint()
755 cellInfo.cell = null; in setTagToCellInfoForPoint()
756 cellInfo.cellX = cellXY[0]; in setTagToCellInfoForPoint()
757 cellInfo.cellY = cellXY[1]; in setTagToCellInfoForPoint()
758 cellInfo.spanX = 1; in setTagToCellInfoForPoint()
[all …]
DWorkspace.java1874 void startDrag(CellLayout.CellInfo cellInfo) {
1875 View child = cellInfo.cell;
1882 mDragInfo = cellInfo;
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DLauncherAccessibilityDelegate.java348 CellLayout.CellInfo cellInfo = new CellLayout.CellInfo(item, info); in beginAccessibleDrag() local
368 mDragSource.startDrag(cellInfo, true); in beginAccessibleDrag()
392 void startDrag(CellLayout.CellInfo cellInfo, boolean accessible); in startDrag() argument
/packages/apps/Launcher3/src/com/android/launcher3/
DFolder.java281 public void startDrag(CellInfo cellInfo, boolean accessible) { in startDrag() argument
282 beginDrag(cellInfo.cell, accessible); in startDrag()
DWorkspace.java2344 public void startDrag(CellLayout.CellInfo cellInfo) { in startDrag() argument
2345 startDrag(cellInfo, false); in startDrag()
2349 public void startDrag(CellLayout.CellInfo cellInfo, boolean accessible) { in startDrag() argument
2350 View child = cellInfo.cell; in startDrag()
2357 mDragInfo = cellInfo; in startDrag()