Searched defs:mConversation (Results 1 - 8 of 8) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationPositionTracker.java45 private Conversation mConversation; field in class:ConversationPositionTracker
126 * TODO(viki): Get rid of this method and the mConversation field entirely.
129 mConversation = conversation;
171 return mConversation.position;
174 if (cursor == null || mConversation == null) {
183 final int foundPosition = cursor.getConversationPosition(mConversation.id);
185 mConversation.position = foundPosition;
209 " in the cursor. Moving to position %d ", mConversation.toString(),
212 mConversation = new Conversation(cursor);
213 mConversation
[all...]
H A DAbstractConversationViewFragment.java72 protected Conversation mConversation; field in class:AbstractConversationViewFragment
215 mConversation = args.getParcelable(ARG_CONVERSATION);
225 mBaseUri = "x-thread://" + mAccount.getEmailAddress().hashCode() + "/" + mConversation.id;
232 if (!LogUtils.isLoggable(LOG_TAG, LogUtils.DEBUG) || mConversation == null) {
235 return "(" + s + " conv=" + mConversation + ")";
269 return mConversation;
412 return new MessageLoader(mActivity.getActivityContext(), mConversation.messageListUri);
446 mConversation.uri);
510 LogUtils.w(LOG_TAG, "ignoring onConversationSeen for conv=%s", mConversation.id);
514 mViewState.setInfoForConversation(mConversation);
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DConversationListItem.java63 private Conversation mConversation; field in class:ConversationListItem
93 return mConversation;
106 String from = mConversation.getRecipients().formatNames(", ");
110 if (mConversation.getMessageCount() > 1) {
113 mConversation.getMessageCount()));
118 if (mConversation.hasDraft()) {
132 if (mConversation.hasUnreadMessages()) {
141 if (mConversation.getRecipients().size() == 1) {
142 Contact contact = mConversation.getRecipients().get(0);
178 mConversation
[all...]
H A DComposeMessageActivity.java258 private Conversation mConversation; // Conversation we are working in field in class:ComposeMessageActivity
1166 // thread contains no messages and silently deletes the thread. Meanwhile, the mConversation
1171 synchronized(mConversation) {
1172 if (mConversation.getMessageCount() <= 1) {
1173 mConversation.clearThreadId();
1197 mWorkingMessage.setConversation(mConversation);
1699 if (token != mConversation.getThreadId()) {
1733 return mConversation.getRecipients();
1926 // mConversation
1930 originalThreadId == mConversation
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationActionUtils.java394 private final Conversation mConversation; field in class:NotificationActionUtils.NotificationAction
408 mConversation = conversation;
426 return mConversation;
478 out.writeParcelable(mConversation, 0);
509 mConversation = in.readParcelable(loader);
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationViewAdapter.java86 public final Conversation mConversation; field in class:ConversationViewAdapter.ConversationHeaderItem
89 mConversation = conv;
103 headerView.setSubject(mConversation.subject);
106 headerView.setFolders(mConversation);
H A DConversationCursor.java1701 private final Conversation mConversation; field in class:ConversationCursor.ConversationOperation
1720 mConversation = conv;
1745 sProvider.commitMostlyDead(mConversation, ConversationCursor.this);
1749 sProvider.setMostlyDead(mConversation, ConversationCursor.this);
1765 sProvider.commitMostlyDead(mConversation, ConversationCursor.this);
1769 sProvider.setMostlyDead(mConversation,ConversationCursor.this);
1781 sProvider.commitMostlyDead(mConversation, ConversationCursor.this);
1785 sProvider.setMostlyDead(mConversation, ConversationCursor.this);
/packages/apps/Mms/src/com/android/mms/data/
H A DWorkingMessage.java128 private Conversation mConversation; field in class:WorkingMessage
782 mConversation.setRecipients(recipients); // resets the threadId to zero
809 if (DEBUG) LogTag.debug("saveAsMms mConversation=%s", mConversation);
813 LogTag.warn("saveAsMms mDiscarded: true mConversation: " + mConversation +
830 if (!mConversation.getRecipients().isEmpty()) {
831 mConversation.ensureThreadId();
833 mConversation.setDraftState(true);
836 SendReq sendReq = makeSendReq(mConversation, mSubjec
[all...]

Completed in 482 milliseconds