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

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SourceShortcutRefresher.java 54 String shortcutId = shortcut.getShortcutId();
55 if (shouldRefresh(source, shortcutId) && !isRefreshing(source, shortcutId)) {
57 Log.d(TAG, "Refreshing shortcut " + shortcutId + " '" +
60 markShortcutRefreshing(source, shortcutId);
63 source, shortcutId, extraData, listener);
71 public boolean shouldRefresh(Source source, String shortcutId) {
72 return source != null && shortcutId != null
73 && !mRefreshed.contains(makeKey(source, shortcutId));
76 public boolean isRefreshing(Source source, String shortcutId) {
    [all...]
ShortcutsProvider.java 165 String shortcutId = shortcut.getAsString(SearchManager.SUGGEST_COLUMN_SHORTCUT_ID);
182 suggestion.setShortcutId(shortcutId);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestionProvider.java 82 String shortcutId = getQuery(uri);
85 return new SuggestionCursorBackedCursor(mSource.refreshShortcut(shortcutId, extraData));
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsProvider.java 344 String shortcutId = null;
346 shortcutId = uri.getLastPathSegment();
348 return refreshShortcut(shortcutId, projectionIn);
378 * @param shortcutId Flattened component name of an activity.
380 private Cursor refreshShortcut(String shortcutId, String[] projectionIn) {
381 ComponentName component = ComponentName.unflattenFromString(shortcutId);
383 Log.w(TAG, "Bad shortcut id: " + shortcutId);

Completed in 61 milliseconds