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

/packages/apps/Launcher3/src/com/android/launcher3/
H A DFolderPagedView.java71 private final int mMaxCountX; field in class:FolderPagedView
90 mMaxCountX = profile.numFolderColumns;
93 mMaxItemsPerPage = mMaxCountX * mMaxCountY;
114 * maintaining the restrictions of {@link #mMaxCountX} & {@link #mMaxCountY}.
120 mGridCountX = mMaxCountX;
132 if ((mGridCountX <= mGridCountY || mGridCountY == mMaxCountY) && mGridCountX < mMaxCountX) {
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolder.java80 private int mMaxCountX; field in class:Folder
125 mMaxCountX = res.getInteger(R.integer.folder_max_count_x);
128 if (mMaxCountX < 0 || mMaxCountY < 0 || mMaxNumItems < 0) {
129 mMaxCountX = LauncherModel.getCellCountX();
131 mMaxNumItems = mMaxCountX * mMaxCountY;
773 if ((countX <= countY || countY == mMaxCountY) && countX < mMaxCountX) {

Completed in 66 milliseconds