Searched defs:cellXY (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java752 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, in argument
2823 findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) argument
2840 findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY) argument
2849 findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY, View ignoreView, boolean occupied[][]) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DCellLayout.java1327 final int[] cellXY = mTmpXY;
1328 cellToCenterPoint(x, y, cellXY);
1343 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1344 + Math.pow(cellXY[1] - pixelY, 2));
2715 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2722 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) { argument
2723 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null, mOccupied);
2729 * @param cellXY The array that will contain the position of a vacant cell if such a cell
2736 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) { argument
2737 return findCellForSpanThatIntersectsIgnoring(cellXY, span
2753 findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY) argument
2762 findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY, View ignoreView, boolean occupied[][]) argument
[all...]

Completed in 35 milliseconds