Home | History | Annotate | Download | only in launcher2

Lines Matching full:cellxy

196                 int cellXY[] = mCellXY;
197 pointToCellExact(x, y, cellXY);
207 cellInfo.cellX = cellXY[0];
208 cellInfo.cellY = cellXY[1];
211 cellInfo.valid = cellXY[0] >= 0 && cellXY[1] >= 0 && cellXY[0] < xCount &&
212 cellXY[1] < yCount && !occupied[cellXY[0]][cellXY[1]];
570 final int[] cellXY = mCellXY;
571 getLocationOnScreen(cellXY);
573 cellXY[0] + childLeft + lp.width / 2,
574 cellXY[1] + childTop + lp.height / 2, 0, null);
614 final int[] cellXY = mCellXY;
633 cellToPoint(cell.cellX, cell.cellY, cellXY);
635 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2) +
636 Math.pow(cellXY[1] - pixelY, 2));
698 int[] cellXY = mCellXY;
699 pointToCellRounded(cellX, cellY, cellXY);
701 cellToRect(cellXY[0], cellXY[1], lp.cellHSpan, lp.cellVSpan, mDragRect);
1038 * @param cellXY The array that will contain the position of a vacant cell if such a cell
1045 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
1046 return findCellForSpan(cellXY, spanX, spanY, true);
1049 boolean findCellForSpan(int[] cellXY, int spanX, int spanY, boolean clear) {
1056 cellXY[0] = cellX;
1057 cellXY[1] = cellY;
1065 cellXY[0] = cell.cellX;
1066 cellXY[1] = cell.cellY;
1076 cellXY[0] = cell.cellX;
1077 cellXY[1] = cell.cellY;