Home
last modified time | relevance | path

Searched refs:shortcutId (Results 1 – 15 of 15) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/notification/
DNotificationKeyData.java35 public final String shortcutId; field in NotificationKeyData
38 private NotificationKeyData(String notificationKey, String shortcutId, int count) { in NotificationKeyData() argument
40 this.shortcutId = shortcutId; in NotificationKeyData()
/packages/apps/DeskClock/src/com/android/deskclock/events/
DShortcutEventTracker.java49 final String shortcutId = UiDataModel.getUiDataModel().getShortcutId(category, action); in sendEvent() local
50 if (shortcuts.contains(shortcutId)) { in sendEvent()
51 mShortcutManager.reportShortcutUsed(shortcutId); in sendEvent()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/launcher3/appprediction/
DPredictionAppTracker.java170 public void onStartShortcut(String packageName, String shortcutId, UserHandle user, in onStartShortcut() argument
174 .Builder(new AppTargetId("shortcut:" + shortcutId), packageName, user) in onStartShortcut()
175 .setClassName(shortcutId) in onStartShortcut()
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
DShortcutKey.java38 String shortcutId = intent.getStringExtra(EXTRA_SHORTCUT_ID); in fromIntent() local
39 return new ShortcutKey(intent.getPackage(), user, shortcutId); in fromIntent()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
DGoogleSuggestionProvider.java82 String shortcutId = getQuery(uri); in query() local
85 return new SuggestionCursorBackedCursor(mSource.refreshShortcut(shortcutId, extraData)); in query()
DGoogleSource.java27 SuggestionCursor refreshShortcut(String shortcutId, String extraData); in refreshShortcut() argument
DAbstractGoogleSource.java52 public abstract SuggestionCursor refreshShortcut(String shortcutId, String extraData); in refreshShortcut() argument
DGoogleSuggestClient.java143 public SuggestionCursor refreshShortcut(String shortcutId, String oldExtraData) { in refreshShortcut() argument
/packages/apps/Dialer/java/com/android/dialer/shortcuts/
DDynamicShortcuts.java230 @NonNull List<ShortcutInfo> shortcutInfos, @NonNull String shortcutId) { in containsShortcut() argument
232 if (oldInfo.getId().equals(shortcutId)) { in containsShortcut()
/packages/apps/DeskClock/src/com/android/deskclock/controller/
DShortcutController.java120 final String shortcutId = UiDataModel.getUiDataModel() in createStopwatchShortcut() local
122 final ShortcutInfo.Builder shortcut = new ShortcutInfo.Builder(mContext, shortcutId) in createStopwatchShortcut()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionData.java191 public SuggestionData setShortcutId(String shortcutId) { in setShortcutId() argument
192 mShortcutId = shortcutId; in setShortcutId()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/shortcut/
DCreateShortcutPreferenceController.java157 final String shortcutId = SHORTCUT_ID_PREFIX + in createResultIntent() local
159 ShortcutInfo info = new ShortcutInfo.Builder(mContext, shortcutId) in createResultIntent()
/packages/apps/Settings/src/com/android/settings/shortcut/
DCreateShortcutPreferenceController.java225 final String shortcutId = SHORTCUT_ID_PREFIX + in createShortcutInfo() local
227 return new ShortcutInfo.Builder(context, shortcutId) in createShortcutInfo()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DAppLaunchTracker.java49 public void onStartShortcut(String packageName, String shortcutId, UserHandle user, in onStartShortcut() argument
/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupPopulator.java146 : notificationKeys.get(0).shortcutId; in createUpdateRunnable()