OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCellCountX
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
PagedViewGridLayout.java
31
private int
mCellCountX
;
37
mCellCountX
= cellCountX;
42
return
mCellCountX
;
PagedViewCellLayout.java
37
private int
mCellCountX
;
69
mCellCountX
= LauncherModel.getCellCountX();
107
if (lp.cellX >= 0 && lp.cellX <= (
mCellCountX
- 1) &&
111
if (lp.cellHSpan < 0) lp.cellHSpan =
mCellCountX
;
163
return
mCellCountX
;
181
int numWidthGaps =
mCellCountX
- 1;
187
int hFreeSpace = hSpace - (
mCellCountX
* mOriginalCellWidth);
202
newWidth = getPaddingLeft() + getPaddingRight() + (
mCellCountX
* mCellWidth) +
203
((
mCellCountX
- 1) * mWidthGap);
236
if (
mCellCountX
> 0)
[
all
...]
Hotseat.java
38
private int
mCellCountX
;
59
mCellCountX
= a.getInt(R.styleable.Hotseat_cellCountX, -1);
99
if (
mCellCountX
< 0)
mCellCountX
= LauncherModel.getCellCountX();
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));
387
mCellCountX
= mWidgetSpacingLayout.getCellCountX();
[
all
...]
LauncherModel.java
148
private static int
mCellCountX
;
687
return
mCellCountX
;
699
mCellCountX
= shortAxisCellCount;
[
all
...]
PagedView.java
131
protected int
mCellCountX
= 0;
[
all
...]
Completed in 72 milliseconds