Searched refs:MAX_SHORTCUTS (Results 1 – 4 of 4) sorted by relevance
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/popup/ |
D | PopupPopulatorTest.java | 21 import static com.android.launcher3.popup.PopupPopulator.MAX_SHORTCUTS; 53 filterShortcutsAndAssertNumStaticAndDynamic(createShortcutsList(5, 0), MAX_SHORTCUTS, 0); in testSortAndFilterShortcuts() 54 filterShortcutsAndAssertNumStaticAndDynamic(createShortcutsList(0, 5), 0, MAX_SHORTCUTS); in testSortAndFilterShortcuts() 56 MAX_SHORTCUTS - NUM_DYNAMIC, NUM_DYNAMIC); in testSortAndFilterShortcuts() 58 MAX_SHORTCUTS - NUM_DYNAMIC, NUM_DYNAMIC); in testSortAndFilterShortcuts() 59 … filterShortcutsAndAssertNumStaticAndDynamic(createShortcutsList(5, 1), MAX_SHORTCUTS - 1, 1); in testSortAndFilterShortcuts() 60 … filterShortcutsAndAssertNumStaticAndDynamic(createShortcutsList(1, 5), 1, MAX_SHORTCUTS - 1); in testSortAndFilterShortcuts() 62 MAX_SHORTCUTS - NUM_DYNAMIC, NUM_DYNAMIC); in testSortAndFilterShortcuts() 64 MAX_SHORTCUTS - NUM_DYNAMIC, NUM_DYNAMIC); in testSortAndFilterShortcuts()
|
/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
D | PopupPopulator.java | 47 public static final int MAX_SHORTCUTS = 4; field in PopupPopulator 73 if (shortcuts.size() <= MAX_SHORTCUTS) { in sortAndFilterShortcuts() 79 List<ShortcutInfo> filteredShortcuts = new ArrayList<>(MAX_SHORTCUTS); in sortAndFilterShortcuts() 85 if (filteredSize < MAX_SHORTCUTS) { in sortAndFilterShortcuts()
|
D | PopupContainerWithArrow.java | 23 import static com.android.launcher3.popup.PopupPopulator.MAX_SHORTCUTS; 437 view.setVisibility(i >= MAX_SHORTCUTS ? GONE : VISIBLE); in updateHiddenShortcuts()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | DynamicShortcuts.java | 90 private static final int MAX_SHORTCUTS = 3; field in DynamicShortcuts 227 String.valueOf(MAX_SHORTCUTS)) in getStrequentShortcuts() 237 while (i < MAX_SHORTCUTS && cursor.moveToNext()) { in getStrequentShortcuts()
|