Home
last modified time | relevance | path

Searched refs:DialerShortcut (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/shortcuts/
DDynamicShortcuts.java70 final Map<String, DialerShortcut> shortcutsToUpdateById = new ArrayMap<>();
72 final Map<String, DialerShortcut> shortcutsToAddById = new ArrayMap<>();
115 Map<String, DialerShortcut> newDynamicShortcutsById = in refresh()
123 DialerShortcut shortcut = in refresh()
124 DialerShortcut.builder() in refresh()
174 @NonNull Map<String, DialerShortcut> newDynamicShortcutsById) { in computeDelta()
183 DialerShortcut newShortcut = newDynamicShortcutsById.get(oldInfo.getId()); in computeDelta()
197 for (Entry<String, DialerShortcut> entry : newDynamicShortcutsById.entrySet()) { in computeDelta()
199 DialerShortcut newShortcut = entry.getValue(); in computeDelta()
DPinnedShortcuts.java61 final Map<String, DialerShortcut> shortcutsToUpdateById = new ArrayMap<>();
118 String lookupKey = DialerShortcut.getLookupKeyFromShortcutInfo(shortcutInfo); in refresh()
119 Uri lookupUri = DialerShortcut.getLookupUriFromShortcutInfo(shortcutInfo); in refresh()
133 DialerShortcut shortcut = in refresh()
134 DialerShortcut.builder() in refresh()
DIconFactory.java63 public Icon create(@NonNull DialerShortcut shortcut) { in create()
75 DialerShortcut.getLookupUriFromShortcutInfo(shortcutInfo), in create()
76 DialerShortcut.getDisplayNameFromShortcutInfo(shortcutInfo), in create()
77 DialerShortcut.getLookupKeyFromShortcutInfo(shortcutInfo)); in create()
DShortcutInfoFactory.java59 List<ShortcutInfo> buildShortcutInfos(@NonNull Map<String, DialerShortcut> shortcutsById) { in buildShortcutInfos()
62 for (DialerShortcut shortcut : shortcutsById.values()) { in buildShortcutInfos()
76 if (shortcut.getRank() != DialerShortcut.NO_RANK) { in buildShortcutInfos()
DDialerShortcut.java35 abstract class DialerShortcut { class
188 abstract DialerShortcut build(); in build()