Searched refs:Conversation (Results 1 - 25 of 58) sorted by relevance

123

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationUpdater.java27 import com.android.mail.providers.Conversation;
47 void updateConversation(Collection <Conversation> target, String columnName, String value);
57 void updateConversation(Collection <Conversation> target, String columnName, int value);
67 void updateConversation(Collection <Conversation> target, String columnName, boolean value);
77 void updateConversation(Collection <Conversation> target, ContentValues values);
87 int actionId, final Collection<Conversation> target, final DestructiveAction action,
97 void markConversationsRead(Collection<Conversation> targets, boolean read, boolean viewed);
101 * conversation and the view <b>returns to Conversation List</b> mode.
109 void markConversationMessagesUnread(Conversation conv, Set<Uri> unreadMessageUris,
114 * {@link ConversationMessage} to propagate the change to the owning {@link Conversation}
[all...]
H A DConversationPositionTracker.java21 import com.android.mail.providers.Conversation;
45 private Conversation mConversation;
57 private Conversation conversationAtPosition(int position){
60 final Conversation conv = cursor.getConversation();
78 * @return the {@link Conversation} of the newer conversation by one position. If no such
81 private Conversation getNewer(Collection<Conversation> victims) {
90 final Conversation candidate = conversationAtPosition(pos);
91 if (!Conversation.contains(victims, candidate)) {
100 * @return the {@link Conversation} o
[all...]
H A DConversationListCallbacks.java26 import com.android.mail.providers.Conversation;
40 void onConversationSelected(Conversation conversation, boolean inLoaderCallbacks);
54 Conversation getCurrentConversation();
55 void setCurrentConversation(Conversation c);
H A DLeaveBehindData.java22 import com.android.mail.providers.Conversation;
25 final Conversation data;
29 public LeaveBehindData(Conversation conv, ToastBarOperation undoOp, int height) {
H A DConversationSelectionSet.java24 import com.android.mail.providers.Conversation;
68 private final HashMap<Long, Conversation> mInternalMap = new HashMap<Long, Conversation>();
69 /** Map of Conversation URI to Conversation ID. */
85 Conversation conversation = (Conversation) parceled;
135 public boolean contains(Conversation conversation) {
182 private void put(Long id, Conversation info) {
249 public void toggle(Conversation conversatio
[all...]
H A DFolderDisplayer.java27 import com.android.mail.providers.Conversation;
35 * (The raw folders string can be obtained from {@link Conversation#getRawFolders()}.)
56 * @param conv {@link Conversation} containing the folders to display.
60 public void loadConversationFolders(Conversation conv, final FolderUri ignoreFolderUri,
H A DFolderSelectionDialog.java31 import com.android.mail.providers.Conversation;
46 protected final Collection<Conversation> mTarget;
54 final ConversationUpdater updater, final Collection<Conversation> target,
86 final ConversationUpdater updater, final Collection<Conversation> target,
H A DSwipeableListView.java40 import com.android.mail.providers.Conversation;
233 Conversation conv = target.getConversation();
241 Collection<Conversation> convList = Conversation.listOf(conv);
261 cc.mostlyDestructiveUpdate(Conversation.listOf(conv), values);
309 public boolean destroyItems(Collection<Conversation> convs,
324 public int findConversation(ConversationItemView view, Conversation conv) {
335 Conversation foundConv;
386 public void onListItemSwiped(Collection<Conversation> conversations);
H A DLeaveBehindItem.java36 import com.android.mail.providers.Conversation;
49 private Conversation mData;
113 ToastBarOperation undoOp, Conversation target, Folder folder, int height) {
270 public void setData(Conversation conversation) {
274 public Conversation getData() {
H A DMultiFoldersSelectionDialog.java27 import com.android.mail.providers.Conversation;
62 final ConversationUpdater updater, final Collection<Conversation> target,
83 for (final Conversation conversation : mTarget) {
H A DAnimatedAdapter.java50 import com.android.mail.providers.Conversation;
375 Conversation conv) {
421 * {@link Conversation#position} set to the position of these conversations
429 public void swipeDelete(Collection<Conversation> conversations,
438 * {@link Conversation#position} set to the position of these conversations
446 public void delete(Collection<Conversation> conversations, ListItemsRemovedListener listener) {
450 private void delete(Collection<Conversation> conversations, ListItemsRemovedListener listener,
461 for (Conversation c: conversations) {
493 final Conversation conv = cursor.getConversation();
495 // Notify the provider of this change in the position of Conversation curso
[all...]
H A DSingleFolderSelectionDialog.java26 import com.android.mail.providers.Conversation;
54 final ConversationUpdater updater, final Collection<Conversation> target,
/packages/apps/Mms/tests/src/com/android/mms/util/
H A DVerifyRecipientUnitTests.java24 import com.android.mms.data.Conversation;
27 * This is a series of unit tests for Conversation's verifyRecipients function.
53 Conversation.verifySingleRecipient(getContext(), mThreadId1, "(415) 232-4567"),
57 Conversation.verifySingleRecipient(getContext(), mThreadId1, " 232-4567"),
/packages/apps/Mms/src/com/android/mms/ui/
H A DConversationListAdapter.java30 import com.android.mms.data.Conversation;
35 //TODO: This should be public class ConversationListAdapter extends ArrayAdapter<Conversation>
56 Conversation conv = Conversation.from(context, cursor);
92 Conversation conv = Conversation.from(mContext, cursor);
H A DNoConfirmationSendService.java27 import com.android.mms.data.Conversation;
63 String recipients = Conversation.getRecipients(intentUri);
H A DConversationList.java77 import com.android.mms.data.Conversation;
78 import com.android.mms.data.Conversation.ConversationQueryHandler;
402 if (!Conversation.loadingThreads()) {
445 Conversation.startQueryForAll(mQueryHandler, THREAD_LIST_QUERY_TOKEN);
446 Conversation.startQuery(mQueryHandler, UNREAD_THREADS_QUERY_TOKEN, Threads.READ + "=0");
592 Conversation conv = Conversation.from(this, cursor);
635 Conversation conv = Conversation.from(ConversationList.this, cursor);
662 Conversation con
[all...]
H A DRecipientListActivity.java43 import com.android.mms.data.Conversation;
70 Conversation conv = Conversation.get(this, mThreadId, true);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DConversation.java44 public class Conversation implements Parcelable { class in inherits:Parcelable
187 // Used within the UI to indicate that a Conversation should be removed from
189 // Conversation is no longer in the ConversationList for the current folder,
204 public static final Collection<Conversation> EMPTY = Collections.emptyList();
245 private Conversation(Parcel in, ClassLoader loader) { method in class:Conversation
294 public static final ClassLoaderCreator<Conversation> CREATOR =
295 new ClassLoaderCreator<Conversation>() {
298 public Conversation createFromParcel(Parcel source) {
299 return new Conversation(source, null);
303 public Conversation createFromParce
321 public Conversation(Cursor cursor) { method in class:Conversation
374 public Conversation(Conversation other) { method in class:Conversation
416 public Conversation() { method in class:Conversation
[all...]
/packages/apps/Mms/src/com/android/mms/
H A DLogTag.java27 import com.android.mms.data.Conversation;
101 Conversation.dumpThreadsTable(context);
102 Conversation.dump();
103 Conversation.dumpSmsTable(context);
/packages/apps/Mms/src/com/android/mms/data/
H A DConversation.java45 public class Conversation { class
105 private Conversation(Context context) { method in class:Conversation
111 private Conversation(Context context, long threadId, boolean allowQuery) { method in class:Conversation
113 Log.v(TAG, "Conversation constructor threadId: " + threadId);
122 private Conversation(Context context, Cursor cursor, boolean allowQuery) { method in class:Conversation
124 Log.v(TAG, "Conversation constructor cursor, allowQuery: " + allowQuery);
135 public static Conversation createNew(Context context) {
136 return new Conversation(context);
142 public static Conversation get(Context context, long threadId, boolean allowQuery) {
144 Log.v(TAG, "Conversation ge
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java42 import com.android.mail.providers.Conversation;
135 private final List<Conversation> mMostlyDead = Lists.newArrayList();
138 private final Set<Conversation> mNotificationTempDeleted = Sets.newHashSet();
255 public Conversation conversation;
257 public UnderlyingRowData(String innerUri, Conversation conversation) {
309 rowData.conversation = new Conversation(
338 // the Conversation objects are being pre-cached, and the conversation maps are
514 public Conversation getConversation() {
518 public void cacheConversation(Conversation conversation) {
760 * Returns the position, in the ConversationCursor, of the Conversation wit
[all...]
H A DConversationPagerAdapter.java31 import com.android.mail.providers.Conversation;
54 private final Conversation mInitialConversation;
108 Folder folder, Conversation initialConversation) {
157 // ConversationPagerController.stopListening() to indicate that the Conversation View
169 final Conversation c;
196 private AbstractConversationViewFragment getConversationViewFragment(Conversation c) {
318 final Conversation currConversation = mController.getCurrentConversation();
347 final Conversation conv = cursor.getConversation();
368 private Conversation getDefaultConversation() {
369 Conversation
[all...]
H A DConversationMessage.java29 import com.android.mail.providers.Conversation;
36 * handy to have the owning {@link com.android.mail.providers.Conversation} for context.
64 public Conversation getConversation() {
H A DMessageCursor.java27 import com.android.mail.providers.Conversation;
42 * The current controller that this cursor can use to reference the owning {@link Conversation},
52 Conversation getConversation();
H A DSwipeableConversationItemView.java28 import com.android.mail.providers.Conversation;
58 public void bind(final Conversation conversation, final ControllableActivity activity,

Completed in 241 milliseconds

123