Home | History | Annotate | Download | only in launcher2

Lines Matching refs:cellXY

740             final int cellXY[] = mTmpXY;
741 pointToCellExact(x, y, cellXY);
744 cellInfo.cellX = cellXY[0];
745 cellInfo.cellY = cellXY[1];
1440 final int[] cellXY = mTmpXY;
1441 cellToCenterPoint(x, y, cellXY);
1456 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1457 + Math.pow(cellXY[1] - pixelY, 2));
2580 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2587 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
2588 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null, mOccupied);
2594 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2601 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) {
2602 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1,
2618 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY,
2621 cellXY, spanX, spanY, intersectX, intersectY, null, mOccupied);
2627 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY,
2664 if (cellXY != null) {
2665 cellXY[0] = x;
2666 cellXY[1] = y;