OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mConversation
(Results
1 - 11
of
11
) sorted by null
/packages/apps/Mms/src/com/android/mms/ui/
ConversationListItem.java
63
private Conversation
mConversation
;
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
= conversation
[
all
...]
ComposeMessageActivity.java
258
private Conversation
mConversation
; // Conversation we are working in
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationPositionTracker.java
45
private Conversation
mConversation
;
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
.position = newPosition
[
all
...]
AbstractConversationViewFragment.java
72
protected Conversation
mConversation
;
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
...]
SecureConversationViewFragment.java
145
headerView.setFolders(
mConversation
);
146
headerView.setSubject(
mConversation
.subject);
199
if (activity == null ||
mConversation
== null || message == null) {
201
mConversation
!= null ?
mConversation
.id : 0);
206
activity.getConversationUpdater().markConversationMessagesUnread(
mConversation
, uris,
ConversationViewFragment.java
302
if (
mConversation
!= null &&
mConversation
.conversationBaseUri != null &&
305
new SetCookieTask(getContext(),
mConversation
.conversationBaseUri,
465
LogUtils.w(LOG_TAG, "ignoring markUnread for conv=%s",
mConversation
.id);
471
mConversation
.id);
474
activity.getConversationUpdater().markConversationMessagesUnread(
mConversation
,
515
|| (
mConversation
!= null && (
mConversation
.isRemote
516
||
mConversation
.getNumMessages() > mMaxAutoLoadMessages));
579
fw = new java.io.FileWriter("/sdcard/conv" +
mConversation
.i
[
all
...]
/external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java
44
private ConversationUtils.Conversation
mConversation
;
72
mConversation
= LevelTree.get(levelRow, levelIndex).dialogResources.character1Conversations.get(index);
74
mConversation
= LevelTree.get(levelRow, levelIndex).dialogResources.character2Conversations.get(index);
203
if (!
mConversation
.splittingComplete) {
205
formatPages(
mConversation
, textView);
206
mConversation
.splittingComplete = true;
210
mPages =
mConversation
.pages;
/packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java
128
private Conversation
mConversation
;
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
, mSubject)
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationViewAdapter.java
86
public final Conversation
mConversation
;
89
mConversation
= conv;
103
headerView.setSubject(
mConversation
.subject);
106
headerView.setFolders(
mConversation
);
ConversationCursor.java
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationActionUtils.java
394
private final Conversation
mConversation
;
408
mConversation
= conversation;
426
return
mConversation
;
478
out.writeParcelable(
mConversation
, 0);
509
mConversation
= in.readParcelable(loader);
[
all
...]
Completed in 115 milliseconds