Home
last modified time | relevance | path

Searched refs:mShortcutId (Results 1 – 2 of 2) sorted by relevance

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionData.java38 private String mShortcutId; field in SuggestionData
90 return mShortcutId; in getShortcutId()
192 mShortcutId = shortcutId; in setShortcutId()
231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode()); in hashCode()
284 if (mShortcutId == null) { in equals()
285 if (other.mShortcutId != null) in equals()
287 } else if (!mShortcutId.equals(other.mShortcutId)) in equals()
326 appendField(builder, "shortcutid", mShortcutId); in toString()
DSourceShortcutRefresher.java111 private final String mShortcutId; field in SourceShortcutRefresher.ShortcutRefreshTask
123 mShortcutId = shortcutId; in ShortcutRefreshTask()
134 SuggestionCursor refreshed = mSource.refreshShortcut(mShortcutId, mExtraData); in run()
140 markShortcutRefreshed(mSource, mShortcutId); in run()
141 mListener.onShortcutRefreshed(mSource, mShortcutId, refreshed); in run()