Home | History | Annotate | Download | only in launcher2

Lines Matching refs:mCountX

68     private int mCountX;
194 mCountX = LauncherModel.getCellCountX();
196 mOccupied = new boolean[mCountX][mCountY];
197 mTmpOccupied = new boolean[mCountX][mCountY];
287 mCountX);
331 mCountX = x;
333 mOccupied = new boolean[mCountX][mCountY];
334 mTmpOccupied = new boolean[mCountX][mCountY];
337 mCountX);
477 for (int i = 0; i < mCountX; i++) {
604 return mCountX;
636 if (lp.cellX >= 0 && lp.cellX <= mCountX - 1 && lp.cellY >= 0 && lp.cellY <= mCountY - 1) {
639 if (lp.cellHSpan < 0) lp.cellHSpan = mCountX;
813 final int xAxis = mCountX;
987 int numWidthGaps = mCountX - 1;
993 int hFreeSpace = hSpace - (mCountX * mCellWidth);
998 mCountX);
1008 newWidth = getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
1009 ((mCountX - 1) * mWidthGap);
1189 final int countX = mCountX;
1345 for (int i = 0; i < mCountX * mCountY; i++) {
1392 final int countX = mCountX;
1525 final int countX = mCountX;
1606 int[] topEdge = new int[mCountX];
1607 int[] bottomEdge = new int[mCountX];
1618 for (int i = 0; i < mCountX; i++) {
1902 if (!fail && clusterRect.left >= 0 && clusterRect.right <= mCountX && clusterRect.top >= 0 &&
2148 for (int i = 0; i < mCountX; i++) {
2211 for (int i = 0; i < mCountX; i++) {
2239 for (int i = 0; i < mCountX; i++) {
2401 for (int i = 0; i < mCountX; i++) {
2488 if (dropRegionSpanX == mCountX || spanX == mCountX) {
2860 int endX = mCountX - (spanX - 1);
3054 return findVacantCell(vacant, spanX, spanY, mCountX, mCountY, mOccupied);
3082 for (int x = 0; x < mCountX; x++) {
3115 for (int x = cellX; x < cellX + spanX && x < mCountX; x++) {
3123 return getPaddingLeft() + getPaddingRight() + (mCountX * mCellWidth) +
3124 (Math.max((mCountX - 1), 0) * mWidthGap);
3133 if (x < mCountX && y < mCountY) {