OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMaxCountY
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/
FolderPagedView.java
72
private final int
mMaxCountY
;
91
mMaxCountY
= profile.numFolderRows;
93
mMaxItemsPerPage = mMaxCountX *
mMaxCountY
;
114
* maintaining the restrictions of {@link #mMaxCountX} & {@link #
mMaxCountY
}.
121
mGridCountY =
mMaxCountY
;
132
if ((mGridCountX <= mGridCountY || mGridCountY ==
mMaxCountY
) && mGridCountX < mMaxCountX) {
134
} else if (mGridCountY <
mMaxCountY
) {
/packages/apps/Launcher2/src/com/android/launcher2/
Folder.java
81
private int
mMaxCountY
;
126
mMaxCountY
= res.getInteger(R.integer.folder_max_count_y);
128
if (mMaxCountX < 0 ||
mMaxCountY
< 0 || mMaxNumItems < 0) {
130
mMaxCountY
= LauncherModel.getCellCountY();
131
mMaxNumItems = mMaxCountX *
mMaxCountY
;
773
if ((countX <= countY || countY ==
mMaxCountY
) && countX < mMaxCountX) {
775
} else if (countY <
mMaxCountY
) {
[
all
...]
Completed in 50 milliseconds