Home
last modified time | relevance | path

Searched refs:cellXY (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DCellLayout.java196 int cellXY[] = mCellXY; in onInterceptTouchEvent() local
197 pointToCellExact(x, y, cellXY); in onInterceptTouchEvent()
207 cellInfo.cellX = cellXY[0]; in onInterceptTouchEvent()
208 cellInfo.cellY = cellXY[1]; in onInterceptTouchEvent()
211 cellInfo.valid = cellXY[0] >= 0 && cellXY[1] >= 0 && cellXY[0] < xCount && in onInterceptTouchEvent()
212 cellXY[1] < yCount && !occupied[cellXY[0]][cellXY[1]]; in onInterceptTouchEvent()
570 final int[] cellXY = mCellXY; in onLayout() local
571 getLocationOnScreen(cellXY); in onLayout()
573 cellXY[0] + childLeft + lp.width / 2, in onLayout()
574 cellXY[1] + childTop + lp.height / 2, 0, null); in onLayout()
[all …]