Searched defs:mConversation (Results 1 - 9 of 9) 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.java74 protected Conversation mConversation; field in class:AbstractConversationViewFragment
219 mConversation = args.getParcelable(ARG_CONVERSATION);
227 mBaseUri = buildBaseUri(getContext(), mAccount, mConversation);
240 if (!LogUtils.isLoggable(LOG_TAG, LogUtils.DEBUG) || mConversation == null) {
243 return "(" + s + " conv=" + mConversation + ")";
277 return mConversation;
356 if (mConversation.getNumMessages() == 1) {
436 return new MessageLoader(mActivity.getActivityContext(), mConversation.messageListUri);
470 mConversation.uri);
550 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/browse/
H A DConversationViewHeader.java65 private Conversation mConversation; field in class:ConversationViewHeader
112 mConversation = mHeaderItem.mConversation;
116 mStarView.setVisibility(mConversation != null ? View.VISIBLE : View.INVISIBLE);
136 mConversation = conv;
151 if (mConversation != null && id == R.id.conversation_header_star) {
152 mConversation.starred = !mConversation.starred;
153 setStarred(mConversation.starred);
154 mConversationUpdater.updateConversation(Conversation.listOf(mConversation),
[all...]
H A DConversationViewAdapter.java119 public final Conversation mConversation; field in class:ConversationViewAdapter.ConversationHeaderItem
122 mConversation = conv;
136 v.setSubject(mConversation.subject);
139 v.setFolders(mConversation);
141 v.setStarred(mConversation.starred);
H A DConversationCursor.java1721 private final Conversation mConversation; field in class:ConversationCursor.ConversationOperation
1744 mConversation = conv;
1770 sProvider.commitMostlyDead(mConversation, ConversationCursor.this);
1774 sProvider.setMostlyDead(mConversation, ConversationCursor.this, mUndoCallback);
1790 sProvider.commitMostlyDead(mConversation, ConversationCursor.this);
1794 sProvider.setMostlyDead(mConversation,ConversationCursor.this, mUndoCallback);
1806 sProvider.commitMostlyDead(mConversation, ConversationCursor.this);
1810 sProvider.setMostlyDead(mConversation, ConversationCursor.this, mUndoCallback);
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DNotificationActionUtils.java487 private final Conversation mConversation; field in class:NotificationActionUtils.NotificationAction
504 mConversation = conversation;
524 return mConversation;
584 out.writeParcelable(mConversation, 0);
617 mConversation = in.readParcelable(loader);
648 clickIntent.setData(notificationAction.mConversation.uri);
660 deleteIntent.setData(notificationAction.mConversation.uri);
723 intent.setData(notificationAction.mConversation.uri);
/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 1021 milliseconds