Searched refs:mCellCountX (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewGridLayout.java31 private int mCellCountX; field in class:PagedViewGridLayout
37 mCellCountX = cellCountX;
42 return mCellCountX;
H A DPagedViewCellLayout.java37 private int mCellCountX; field in class:PagedViewCellLayout
69 mCellCountX = LauncherModel.getCellCountX();
107 if (lp.cellX >= 0 && lp.cellX <= (mCellCountX - 1) &&
111 if (lp.cellHSpan < 0) lp.cellHSpan = mCellCountX;
163 return mCellCountX;
181 int numWidthGaps = mCellCountX - 1;
187 int hFreeSpace = hSpace - (mCellCountX * mOriginalCellWidth);
202 newWidth = getPaddingLeft() + getPaddingRight() + (mCellCountX * mCellWidth) +
203 ((mCellCountX - 1) * mWidthGap);
236 if (mCellCountX >
[all...]
H A DHotseat.java38 private int mCellCountX; field in class:Hotseat
59 mCellCountX = a.getInt(R.styleable.Hotseat_cellCountX, -1);
99 if (mCellCountX < 0) mCellCountX = LauncherModel.getCellCountX();
102 mContent.setGridSize(mCellCountX, mCellCountY);
H A DAppsCustomizePagedView.java303 int numItemsPerPage = mCellCountX * mCellCountY;
336 int numItemsPerPage = mCellCountX * mCellCountY;
353 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
387 mCellCountX = mWidgetSpacingLayout.getCellCountX();
1000 layout.setCellCount(mCellCountX, mCellCountY);
1020 int numCells = mCellCountX * mCellCountY;
1039 int x = index % mCellCountX;
1040 int y = index / mCellCountX;
1042 x = mCellCountX - x - 1;
H A DLauncherModel.java148 private static int mCellCountX; field in class:LauncherModel
687 return mCellCountX;
699 mCellCountX = shortAxisCellCount;
1294 new ItemInfo[Launcher.SCREEN_COUNT + 1][mCellCountX + 1][mCellCountY + 1];
1534 for (int x = 0; x < mCellCountX; x++) {
H A DPagedView.java131 protected int mCellCountX = 0; field in class:PagedView
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedView.java147 protected int mCellCountX = 0; field in class:PagedView

Completed in 59 milliseconds