Home | History | Annotate | Download | only in launcher3

Lines Matching defs:cellXY

738             final int cellXY[] = mTmpXY;
739 pointToCellExact(x, y, cellXY);
742 cellInfo.cellX = cellXY[0];
743 cellInfo.cellY = cellXY[1];
1428 final int[] cellXY = mTmpXY;
1429 cellToCenterPoint(x, y, cellXY);
1444 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1445 + Math.pow(cellXY[1] - pixelY, 2));
2777 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2784 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) {
2785 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null, mOccupied);
2791 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2798 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) {
2799 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1,
2815 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY,
2818 cellXY, spanX, spanY, intersectX, intersectY, null, mOccupied);
2824 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY
2861 if (cellXY != null) {
2862 cellXY[0] = x;
2863 cellXY[1] = y;