Home
last modified time | relevance | path

Searched refs:mSource (Results 1 – 4 of 4) sorted by relevance

/packages/apps/GlobalSearch/src/com/android/globalsearch/
DSuggestionData.java27 private final ComponentName mSource; field in SuggestionData
61 mSource = source; in SuggestionData()
83 return mSource; in getSource()
195 return new Builder(mSource) in buildUpon()
225 if (!mSource.equals(that.mSource)) return false; in equals()
250 int result = mSource.hashCode(); in hashCode()
280 builder.append("source=").append(mSource.toShortString()) in toString()
308 private ComponentName mSource; field in SuggestionData.Builder
332 mSource = source; in Builder()
341 mSource, in build()
DSuggestionResult.java44 private final SuggestionSource mSource; field in SuggestionResult
59 mSource = source; in SuggestionResult()
77 mSource = source; in SuggestionResult()
102 return mSource; in getSource()
DShortcutRefresher.java118 private final SuggestionSource mSource; field in ShortcutRefresher.ShortcutRefreshTask
144 mSource = source; in ShortcutRefreshTask()
160 mRepo.refreshShortcut(mSource.getComponentName(), mShortcutId, refreshed); in done()
162 mReceiver.onRefreshShortcut(mSource.getComponentName(), mShortcutId, refreshed); in done()
169 + mSource.getComponentName().flattenToString() in done()
194 sb.append(mSource.getLabel().substring(0, 4)).append(" "); in logLatency()
/packages/apps/Email/src/com/android/email/activity/
DMessageCompose.java117 private Message mSource; field in MessageCompose
617 mSource = message; in onPostExecute()
738 if (mSource != null && mQuotedTextBar.getVisibility() == View.VISIBLE) { in updateMessage()
741 message.mSourceKey = mSource.mId; in updateMessage()
745 message.mTextReply = mSource.mText; in updateMessage()
748 String fromAsString = Address.unpackToString(mSource.mFrom); in updateMessage()
751 String subject = mSource.mSubject; in updateMessage()
752 String to = Address.unpackToString(mSource.mTo); in updateMessage()
753 String cc = Address.unpackToString(mSource.mCc); in updateMessage()