Home
last modified time | relevance | path

Searched refs:updatedShortcuts (Results 1 – 4 of 4) 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)).isSameAs(info); in refreshExistingShortcuts_shouldNotUpdateImmutableShortcut()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DCacheDataUpdatedTask.java53 ArrayList<WorkspaceItemInfo> updatedShortcuts = new ArrayList<>(); in execute() local
64 updatedShortcuts.add(si); in execute()
70 bindUpdatedWorkspaceItems(updatedShortcuts); in execute()
DBaseModelUpdateTask.java92 public void bindUpdatedWorkspaceItems(final ArrayList<WorkspaceItemInfo> updatedShortcuts) { in bindUpdatedWorkspaceItems() argument
93 if (!updatedShortcuts.isEmpty()) { in bindUpdatedWorkspaceItems()
94 scheduleCallbackTask(c -> c.bindWorkspaceItemsChanged(updatedShortcuts)); in bindUpdatedWorkspaceItems()
/packages/apps/Settings/src/com/android/settings/shortcut/
DCreateShortcutPreferenceController.java278 List<ShortcutInfo> updatedShortcuts = new ArrayList<>(); in updateRestoredShortcuts() local
284 updatedShortcuts.add(createShortcutInfo(context, buildShortcutIntent(ri), ri, in updateRestoredShortcuts()
289 if (!updatedShortcuts.isEmpty()) { in updateRestoredShortcuts()
290 sm.updateShortcuts(updatedShortcuts); in updateRestoredShortcuts()