Searched refs:mCellCountY (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewGridLayout.java32 private int mCellCountY; field in class:PagedViewGridLayout
38 mCellCountY = cellCountY;
46 return mCellCountY;
H A DPagedViewCellLayout.java38 private int mCellCountY; field in class:PagedViewCellLayout
70 mCellCountY = LauncherModel.getCellCountY();
108 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
112 if (lp.cellVSpan < 0) lp.cellVSpan = mCellCountY;
167 return mCellCountY;
182 int numHeightGaps = mCellCountY - 1;
188 int vFreeSpace = vSpace - (mCellCountY * mOriginalCellHeight);
204 newHeight = getPaddingTop() + getPaddingBottom() + (mCellCountY * mCellHeight) +
205 ((mCellCountY - 1) * mHeightGap);
229 if (mCellCountY >
[all...]
H A DHotseat.java39 private int mCellCountY; field in class:Hotseat
60 mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1);
100 if (mCellCountY < 0) mCellCountY = LauncherModel.getCellCountY();
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));
388 mCellCountY = mWidgetSpacingLayout.getCellCountY();
1000 layout.setCellCount(mCellCountX, mCellCountY);
1020 int numCells = mCellCountX * mCellCountY;
H A DLauncherModel.java149 private static int mCellCountY; field in class:LauncherModel
691 return mCellCountY;
700 mCellCountY = longAxisCellCount;
1294 new ItemInfo[Launcher.SCREEN_COUNT + 1][mCellCountX + 1][mCellCountY + 1];
1528 for (int y = 0; y < mCellCountY; y++) {
H A DPagedView.java132 protected int mCellCountY = 0; field in class:PagedView
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedViewGridLayout.java32 private int mCellCountY; field in class:PagedViewGridLayout
38 mCellCountY = cellCountY;
46 return mCellCountY;
H A DPagedViewCellLayout.java35 private int mCellCountY; field in class:PagedViewCellLayout
65 mCellCountY = (int) grid.numRows;
102 lp.cellY >= 0 && (lp.cellY <= mCellCountY - 1)) {
106 if (lp.cellVSpan < 0) lp.cellVSpan = mCellCountY;
161 return mCellCountY;
176 int numHeightGaps = mCellCountY - 1;
182 int vFreeSpace = vSpace - (mCellCountY * mOriginalCellHeight);
198 newHeight = getPaddingTop() + getPaddingBottom() + (mCellCountY * mCellHeight) +
199 ((mCellCountY - 1) * mHeightGap);
223 if (mCellCountY >
[all...]
H A DAppsCustomizePagedView.java284 int numItemsPerPage = mCellCountX * mCellCountY;
319 int numItemsPerPage = mCellCountX * mCellCountY;
336 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
345 mCellCountY = (int) grid.allAppsNumRows;
916 layout.setGridSize(mCellCountX, mCellCountY);
950 int numCells = mCellCountX * mCellCountY;
H A DPagedView.java164 protected int mCellCountY = 0; field in class:PagedView

Completed in 229 milliseconds