Lines Matching refs:cellXY
1327 final int[] cellXY = mTmpXY; in findNearestArea() local
1328 cellToCenterPoint(x, y, cellXY); in findNearestArea()
1343 double distance = Math.sqrt(Math.pow(cellXY[0] - pixelX, 2) in findNearestArea()
1344 + Math.pow(cellXY[1] - pixelY, 2)); in findNearestArea()
2722 boolean findCellForSpan(int[] cellXY, int spanX, int spanY) { in findCellForSpan() argument
2723 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, null, mOccupied); in findCellForSpan()
2736 boolean findCellForSpanIgnoring(int[] cellXY, int spanX, int spanY, View ignoreView) { in findCellForSpanIgnoring() argument
2737 return findCellForSpanThatIntersectsIgnoring(cellXY, spanX, spanY, -1, -1, in findCellForSpanIgnoring()
2753 boolean findCellForSpanThatIntersects(int[] cellXY, int spanX, int spanY, in findCellForSpanThatIntersects() argument
2756 cellXY, spanX, spanY, intersectX, intersectY, null, mOccupied); in findCellForSpanThatIntersects()
2762 boolean findCellForSpanThatIntersectsIgnoring(int[] cellXY, int spanX, int spanY, in findCellForSpanThatIntersectsIgnoring() argument
2799 if (cellXY != null) { in findCellForSpanThatIntersectsIgnoring()
2800 cellXY[0] = x; in findCellForSpanThatIntersectsIgnoring()
2801 cellXY[1] = y; in findCellForSpanThatIntersectsIgnoring()