OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:cellCountX
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Launcher3/src/com/android/launcher3/
FocusHelper.java
325
final int
cellCountX
= layout.getCountX();
336
int lvIndex = (llp.cellY *
cellCountX
) + llp.cellX;
337
int rvIndex = (rlp.cellY *
cellCountX
) + rlp.cellX;
/packages/apps/Launcher2/src/com/android/launcher2/
FocusHelper.java
144
final int
cellCountX
= parent.getCellCountX();
146
final int x = widgetIndex %
cellCountX
;
147
final int y = widgetIndex /
cellCountX
;
195
int newWidgetIndex = ((y - 1) *
cellCountX
) + x;
208
int newWidgetIndex = Math.min(widgetCount - 1, ((y + 1) *
cellCountX
) + x);
570
final int
cellCountX
= layout.getCountX();
581
int lvIndex = (llp.cellY *
cellCountX
) + llp.cellX;
582
int rvIndex = (rlp.cellY *
cellCountX
) + rlp.cellX;
[
all
...]
Workspace.java
295
int
cellCountX
= DEFAULT_CELL_COUNT_X;
314
cellCountX
= 1;
315
while (CellLayout.widthInPortrait(res,
cellCountX
+ 1) <= minDims.x) {
316
cellCountX
++;
333
cellCountX
= a.getInt(R.styleable.Workspace_cellCountX,
cellCountX
);
340
LauncherModel.updateWorkspaceLayoutCells(
cellCountX
, cellCountY);
[
all
...]
Completed in 76 milliseconds