HomeSort by relevance Sort by last modified time
    Searched refs:mMaxCountX (Results 1 - 2 of 2) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/
FolderPagedView.java 71 private final int mMaxCountX;
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/
Folder.java 80 private int mMaxCountX;
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) {
    [all...]

Completed in 63 milliseconds