HomeSort by relevance Sort by last modified time
    Searched defs:ShortcutKey (Results 1 - 5 of 5) sorted by null

  /packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
ShortcutKey.java 13 public class ShortcutKey extends ComponentKey {
15 public ShortcutKey(String packageName, UserHandle user, String id) {
24 public static ShortcutKey fromInfo(ShortcutInfoCompat shortcutInfo) {
25 return new ShortcutKey(shortcutInfo.getPackage(), shortcutInfo.getUserHandle(),
29 public static ShortcutKey fromIntent(Intent intent, UserHandle user) {
32 return new ShortcutKey(intent.getPackage(), user, shortcutId);
35 public static ShortcutKey fromItemInfo(ItemInfo info) {
  /packages/apps/Launcher3/src/com/android/launcher3/model/
UserLockStateChangedTask.java 30 import com.android.launcher3.shortcuts.ShortcutKey;
57 HashMap<ShortcutKey, ShortcutInfoCompat> pinnedShortcuts = new HashMap<>();
63 pinnedShortcuts.put(ShortcutKey.fromInfo(shortcut), shortcut);
75 HashSet<ShortcutKey> removedKeys = new HashSet<>();
82 ShortcutKey key = ShortcutKey.fromItemInfo(si);
ShortcutsChangedTask.java 29 import com.android.launcher3.shortcuts.ShortcutKey;
62 HashSet<ShortcutKey> removedKeys = new HashSet<>();
63 MultiHashMap<ShortcutKey, ShortcutInfo> keyToShortcutInfo = new MultiHashMap<>();
70 keyToShortcutInfo.addToList(ShortcutKey.fromItemInfo(si), si);
82 ShortcutKey key = ShortcutKey.fromInfo(fullDetails);
LoaderTask.java 63 import com.android.launcher3.shortcuts.ShortcutKey;
261 Map<ShortcutKey, ShortcutInfoCompat> shortcutKeyToPinnedShortcuts = new HashMap<>();
297 shortcutKeyToPinnedShortcuts.put(ShortcutKey.fromInfo(shortcut),
457 ShortcutKey key = ShortcutKey.fromIntent(intent, c.user);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
InstallShortcutReceiver.java 44 import com.android.launcher3.shortcuts.ShortcutKey;
236 public static HashSet<ShortcutKey> getPendingShortcuts(Context context) {
237 HashSet<ShortcutKey> result = new HashSet<>();
248 result.add(ShortcutKey.fromIntent(decoder.launcherIntent, decoder.user));

Completed in 105 milliseconds