Searched defs:mCellCountY (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
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 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 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 DPagedView.java148 protected int mCellCountY = 0; field in class:PagedView

Completed in 43 milliseconds