OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mCellCountX
(Results
1 - 9
of
9
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
PagedViewGridLayout.java
31
private int
mCellCountX
;
37
mCellCountX
= cellCountX;
42
return
mCellCountX
;
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);
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
...]
LauncherModel.java
146
private static int
mCellCountX
;
669
return
mCellCountX
;
681
mCellCountX
= shortAxisCellCount;
[
all
...]
PagedView.java
131
protected int
mCellCountX
= 0;
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
PagedViewGridLayout.java
31
private int
mCellCountX
;
37
mCellCountX
= cellCountX;
42
return
mCellCountX
;
PagedViewCellLayout.java
34
private int
mCellCountX
;
64
mCellCountX
= (int) grid.numColumns;
101
if (lp.cellX >= 0 && lp.cellX <= (
mCellCountX
- 1) &&
105
if (lp.cellHSpan < 0) lp.cellHSpan =
mCellCountX
;
157
return
mCellCountX
;
175
int numWidthGaps =
mCellCountX
- 1;
181
int hFreeSpace = hSpace - (
mCellCountX
* mOriginalCellWidth);
196
newWidth = getPaddingLeft() + getPaddingRight() + (
mCellCountX
* mCellWidth) +
197
((
mCellCountX
- 1) * mWidthGap);
230
if (
mCellCountX
> 0)
[
all
...]
PagedView.java
167
protected int
mCellCountX
= 0;
[
all
...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java
153
protected int
mCellCountX
= 0;
[
all
...]
Completed in 567 milliseconds