Home | History | Annotate | Download | only in launcher3

Lines Matching refs:lp

97         final PagedViewCellLayout.LayoutParams lp = params;
101 if (lp.cellX >= 0 && lp.cellX <= (mCellCountX - 1) &&
102 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
105 if (lp.cellHSpan < 0) lp.cellHSpan = mCellCountX;
106 if (lp.cellVSpan < 0) lp.cellVSpan = mCellCountY;
109 mChildren.addView(child, index, lp);
303 PagedViewCellLayout.LayoutParams lp = (PagedViewCellLayout.LayoutParams) child.getLayoutParams();
304 lp.isDragging = true;