OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maxCellCountX
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayout.java
351
public void calculateCellCount(int width, int height, int
maxCellCountX
, int maxCellCountY) {
352
mCellCountX = Math.min(
maxCellCountX
, estimateCellHSpan(width));
AppsCustomizePagedView.java
361
int
maxCellCountX
= Integer.MAX_VALUE;
364
maxCellCountX
= (isLandscape ? LauncherModel.getCellCountX() :
370
maxCellCountX
= Math.min(
maxCellCountX
, mMaxAppCellCountX);
383
mWidgetSpacingLayout.calculateCellCount(width, height,
maxCellCountX
, maxCellCountY);
391
mWidgetSpacingLayout.calculateCellCount(width, height,
maxCellCountX
, maxWidgetCellCountY);
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
PagedViewCellLayout.java
345
public void calculateCellCount(int width, int height, int
maxCellCountX
, int maxCellCountY) {
346
mCellCountX = Math.min(
maxCellCountX
, estimateCellHSpan(width));
Completed in 950 milliseconds