OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
300
int numItemsPerPage = mCellCountX *
mCellCountY
;
333
int numItemsPerPage = mCellCountX *
mCellCountY
;
350
mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX *
mCellCountY
));
385
mCellCountY
= mWidgetSpacingLayout.getCellCountY();
[
all
...]
LauncherModel.java
147
private static int
mCellCountY
;
673
return
mCellCountY
;
682
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
318
int numItemsPerPage = mCellCountX *
mCellCountY
;
353
int numItemsPerPage = mCellCountX *
mCellCountY
;
370
mNumAppsPages = (int) Math.ceil((float) mApps.size() / (mCellCountX *
mCellCountY
));
381
mCellCountY
= (int) grid.allAppsNumRows;
[
all
...]
PagedView.java
168
protected int
mCellCountY
= 0;
[
all
...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java
154
protected int
mCellCountY
= 0;
[
all
...]
Completed in 45 milliseconds