Home | History | Annotate | Download | only in launcher2

Lines Matching refs:cellXY

752             final int cellXY[] = mTmpXY;
753 pointToCellExact(x, y, cellXY);
756 cellInfo.cellX = cellXY[0];
757 cellInfo.cellY = cellXY[1];
1453 final int[] cellXY = mTmpXY;
1454 cellToCenterPoint(x, y, cellXY);
1469 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1470 + Math.pow(cellXY[1] - pixelY, 2));
2802 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2809 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
2810 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null, mOccupied);
2816 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2823 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) {
2824 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1,
2840 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY,
2843 cellXY, spanX, spanY, intersectX, intersectY, null, mOccupied);
2849 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY,
2886 if (cellXY != null) {
2887 cellXY[0] = x;
2888 cellXY[1] = y;