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

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewGridLayout.java 32 private int mCellCountY;
38 mCellCountY = cellCountY;
46 return mCellCountY;
PagedViewCellLayout.java 38 private int mCellCountY;
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 > 0)
    [all...]
Hotseat.java 39 private int mCellCountY;
60 mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1);
100 if (mCellCountY < 0) mCellCountY = LauncherModel.getCellCountY();
102 mContent.setGridSize(mCellCountX, mCellCountY);
AppsCustomizePagedView.java 303 int numItemsPerPage = mCellCountX * mCellCountY;
336 int numItemsPerPage = mCellCountX * mCellCountY;
353 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
388 mCellCountY = mWidgetSpacingLayout.getCellCountY();
    [all...]
LauncherModel.java 149 private static int mCellCountY;
691 return mCellCountY;
700 mCellCountY = longAxisCellCount;
    [all...]
PagedView.java 132 protected int mCellCountY = 0;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedViewGridLayout.java 32 private int mCellCountY;
38 mCellCountY = cellCountY;
46 return mCellCountY;
PagedViewCellLayout.java 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)
    [all...]
AppsCustomizePagedView.java 284 int numItemsPerPage = mCellCountX * mCellCountY;
319 int numItemsPerPage = mCellCountX * mCellCountY;
336 mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX * mCellCountY));
345 mCellCountY = (int) grid.allAppsNumRows;
    [all...]
PagedView.java 164 protected int mCellCountY = 0;
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 146 protected int mCellCountY = 0;
    [all...]

Completed in 508 milliseconds