Searched refs:MAX_SHORTCUTS (Results 1 – 6 of 6) sorted by relevance
/aosp12/packages/apps/Launcher3/tests/src/com/android/launcher3/popup/ |
H A 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()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/popup/ |
H A D | PopupPopulator.java | 54 public static final int MAX_SHORTCUTS = 4; field in PopupPopulator 97 if (shortcuts.size() <= MAX_SHORTCUTS) { in sortAndFilterShortcuts() 103 List<ShortcutInfo> filteredShortcuts = new ArrayList<>(MAX_SHORTCUTS); in sortAndFilterShortcuts() 109 if (filteredSize < MAX_SHORTCUTS) { in sortAndFilterShortcuts()
|
H A D | PopupContainerWithArrow.java | 22 import static com.android.launcher3.popup.PopupPopulator.MAX_SHORTCUTS; 357 ? MAX_SHORTCUTS_IF_NOTIFICATIONS : MAX_SHORTCUTS; in updateHiddenShortcuts()
|
/aosp12/packages/apps/Contacts/src/com/android/contacts/ |
H A 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()
|
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
H A D | BaseShortcutManagerTest.java | 307 + ConfigConstants.KEY_MAX_SHORTCUTS + "=" + MAX_SHORTCUTS + "," in injectShortcutManagerConstants() 1051 protected static final int MAX_SHORTCUTS = 10; field in BaseShortcutManagerTest
|
H A D | ShortcutManagerTest1.java | 260 assertEquals(MAX_SHORTCUTS, mManager.getMaxShortcutCountForActivity()); in testGetMaxDynamicShortcutCount()
|