OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUM_ITEMS_IN_PREVIEW
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Launcher2/src/com/android/launcher2/
FolderIcon.java
60
private static final int
NUM_ITEMS_IN_PREVIEW
= 3;
396
float finalAlpha = index <
NUM_ITEMS_IN_PREVIEW
? 0.5f : 0f;
476
mParams = computePreviewItemDrawingParams(Math.min(
NUM_ITEMS_IN_PREVIEW
, index), mParams);
490
index =
NUM_ITEMS_IN_PREVIEW
- index - 1;
491
float r = (index * 1.0f) / (
NUM_ITEMS_IN_PREVIEW
- 1);
553
int nItemsInPreview = Math.min(items.size(),
NUM_ITEMS_IN_PREVIEW
);
/packages/apps/Launcher3/src/com/android/launcher3/
FolderIcon.java
60
private static final int
NUM_ITEMS_IN_PREVIEW
= 3;
445
float finalAlpha = index <
NUM_ITEMS_IN_PREVIEW
? 0.5f : 0f;
524
mParams = computePreviewItemDrawingParams(Math.min(
NUM_ITEMS_IN_PREVIEW
, index), mParams);
538
index =
NUM_ITEMS_IN_PREVIEW
- index - 1;
539
float r = (index * 1.0f) / (
NUM_ITEMS_IN_PREVIEW
- 1);
602
int nItemsInPreview = Math.min(items.size(),
NUM_ITEMS_IN_PREVIEW
);
Completed in 151 milliseconds