Home | History | Annotate | Download | only in launcher3

Lines Matching refs:mCellCountY

35     private int mCellCountY;
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 > 0) {
224 return mCellCountY * mCellHeight + (mCellCountY - 1) * Math.max(0, mHeightGap);
275 mCellCountY = yCount;
347 mCellCountY = Math.min(maxCellCountY, estimateCellVSpan(height));