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

/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolderPagedView.java77 private final int mMaxCountX; field in class:FolderPagedView
94 mMaxCountX = profile.numFolderColumns;
97 mMaxItemsPerPage = mMaxCountX * mMaxCountY;
116 * maintaining the restrictions of {@link #mMaxCountX} & {@link #mMaxCountY}.
161 calculateGridSize(count, mGridCountX, mGridCountY, mMaxCountX, mMaxCountY, mMaxItemsPerPage,
/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 112 milliseconds