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

/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayout.java682 final int cellXY[] = mTmpXY;
683 pointToCellExact(x, y, cellXY);
686 cellInfo.cellX = cellXY[0];
687 cellInfo.cellY = cellXY[1];
1198 final int[] cellXY = mTmpXY;
1199 cellToCenterPoint(x, y, cellXY);
1201 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2)
1202 + Math.pow(cellXY[1] - pixelY, 2));
1267 * @param cellXY The array that will contain the position of a vacant cell if such a cell
1274 boolean findCellForSpan(int[] cellXY, in argument
1288 findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) argument
1304 findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY) argument
1313 findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, int intersectX, int intersectY, View ignoreView) argument
[all...]

Completed in 25 milliseconds