Lines Matching defs:mDragInfo

130     private CellLayout.CellInfo mDragInfo;
2243 mDragInfo = cellInfo;
2408 if (mDragInfo != null) {
2409 final CellLayout.CellInfo dragCellInfo = mDragInfo;
2485 if (mDragInfo != null) {
2486 hasntMoved = dropOverView == mDragInfo.cell;
2529 if (mDragInfo != null) {
2530 CellLayout cellParent = getParentCellLayoutForView(mDragInfo.cell);
2531 hasntMoved = (mDragInfo.cellX == targetCell[0] &&
2532 mDragInfo.cellY == targetCell[1]) && (cellParent == target);
2537 final long screenId = (targetCell == null) ? mDragInfo.screenId : getIdForScreen(target);
2547 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell);
2590 getParentCellLayoutForView(mDragInfo.cell).removeView(mDragInfo.cell);
2620 } else if (mDragInfo != null) {
2621 final View cell = mDragInfo.cell;
2632 mDragInfo.screenId : getIdForScreen(dropTargetLayout);
2633 int spanX = mDragInfo != null ? mDragInfo.spanX : 1;
2634 int spanY = mDragInfo != null ? mDragInfo.spanY : 1;
2696 throw new NullPointerException("mDragInfo.cell has null parent");
3159 final View child = (mDragInfo == null) ? null : mDragInfo.cell;
3426 if (mDragInfo != null) {
3427 spanX = mDragInfo.spanX;
3428 spanY = mDragInfo.spanY;
3722 return mDragInfo;
3767 if (target != this && mDragInfo != null) {
3768 removeWorkspaceItem(mDragInfo.cell);
3770 } else if (mDragInfo != null) {
3772 mDragInfo.container, mDragInfo.screenId);
3774 cellLayout.onDropChild(mDragInfo.cell);
3781 && mDragInfo.cell != null) {
3782 mDragInfo.cell.setVisibility(VISIBLE);
3785 mDragInfo = null;
3800 Log.e(TAG, "mDragInfo.cell has null parent");