Home
last modified time | relevance | path

Searched refs:updatedShortcuts (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/
DSettingsInitializeTest.java68 final List<ShortcutInfo> updatedShortcuts = mShortcutManager.getPinnedShortcuts(); in refreshExistingShortcuts_shouldUpdateLaunchIntentFlagsForExistingShortcut() local
69 assertThat(updatedShortcuts).hasSize(1); in refreshExistingShortcuts_shouldUpdateLaunchIntentFlagsForExistingShortcut()
70 final ShortcutInfo updateInfo = updatedShortcuts.get(0); in refreshExistingShortcuts_shouldUpdateLaunchIntentFlagsForExistingShortcut()
95 final List<ShortcutInfo> updatedShortcuts = mShortcutManager.getPinnedShortcuts(); in refreshExistingShortcuts_shouldNotUpdateImmutableShortcut() local
96 assertThat(updatedShortcuts).hasSize(1); in refreshExistingShortcuts_shouldNotUpdateImmutableShortcut()
97 assertThat(updatedShortcuts.get(0)).isSameInstanceAs(info); in refreshExistingShortcuts_shouldNotUpdateImmutableShortcut()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DCacheDataUpdatedTask.java58 ArrayList<WorkspaceItemInfo> updatedShortcuts = new ArrayList<>(); in execute() local
67 updatedShortcuts.add(si); in execute()
72 taskController.bindUpdatedWorkspaceItems(updatedShortcuts); in execute()
/packages/apps/Settings/src/com/android/settings/shortcut/
DCreateShortcutPreferenceController.java307 List<ShortcutInfo> updatedShortcuts = new ArrayList<>(); in updateRestoredShortcuts() local
313 updatedShortcuts.add(createShortcutInfo(context, in updateRestoredShortcuts()
318 if (!updatedShortcuts.isEmpty()) { in updateRestoredShortcuts()
319 sm.updateShortcuts(updatedShortcuts); in updateRestoredShortcuts()