Searched defs:conversations (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
H A DAbstractConversationListActivity.java113 public void onActionBarDelete(final Collection<SelectedConversation> conversations) { argument
138 conversations.size()))
144 for (final SelectedConversation conversation : conversations) {
157 public void onActionBarArchive(final Iterable<SelectedConversation> conversations, argument
160 for (final SelectedConversation conversation : conversations) {
193 public void onActionBarNotification(final Iterable<SelectedConversation> conversations, argument
195 for (final SelectedConversation conversation : conversations) {
H A DMultiSelectActionModeCallback.java37 void onActionBarDelete(Collection<SelectedConversation> conversations); argument
38 void onActionBarArchive(Iterable<SelectedConversation> conversations, argument
40 void onActionBarNotification(Iterable<SelectedConversation> conversations, argument
178 // ParticipantNormalizedDestination is always null for group conversations.
191 final Iterable<SelectedConversation> conversations = mSelectedConversations.values();
192 for (final SelectedConversation conversation : conversations) {
211 // If we have notification off conversations we show on button, if we have notification on
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationUpdater.java37 * Classes that can update conversations implement this interface.
83 * @param target the conversations to act upon.
84 * @param action to perform after the UI has been updated to remove the conversations
92 * Mark a number of conversations as read or unread.
93 * @param targets the conversations to act upon
94 * @param read true if the conversations are marked read, false if they are marked unread.
95 * @param viewed whether the conversations are marked viewed as well. This indicates that the
96 * conversations are shown on the UI.
130 * Get a destructive action for selected conversations. The action corresponds to Menu item
138 * Get a destructive action for selected conversations
184 showNextConversation(Collection<Conversation> conversations) argument
[all...]
H A DSwipeableListView.java320 LogUtils.e(LOG_TAG, "SwipeableListView.destroyItems: null conversations.");
386 public void onListItemSwiped(Collection<Conversation> conversations); argument
H A DConversationListFragment.java132 * A simple method to update the timestamps of conversations periodically.
792 // There are no checked conversations when in conversation list mode.
874 * here. This is a difference in conversations, not a difference in positions. For example, a
930 * here. This is a difference in conversations, not a difference in positions. For example, a
963 * Change the UI to delete the conversations provided and then call the
966 * @param conversations
969 public void requestDelete(int actionId, final Collection<Conversation> conversations, argument
971 for (Conversation conv : conversations) {
981 if (!mListView.destroyItems(conversations, listener)) {
991 mListAdapter.delete(conversations, listene
1170 onListItemSwiped(Collection<Conversation> conversations) argument
[all...]
H A DAnimatedAdapter.java194 * A list of all views that are not conversations. These include temporary views from
202 * Temporary views insert at specific positions relative to conversations. These can be
427 * Deletes the selected conversations from the conversation list view with a
428 * translation and then a shrink. These conversations <b>must</b> have their
429 * {@link Conversation#position} set to the position of these conversations
434 * @param conversations
437 public void swipeDelete(Collection<Conversation> conversations, argument
439 delete(conversations, listener, mSwipeDeletingItems);
444 * Deletes the selected conversations from the conversation list view by
445 * shrinking them away. These conversations <
454 delete(Collection<Conversation> conversations, ListItemsRemovedListener listener) argument
458 delete(Collection<Conversation> conversations, ListItemsRemovedListener listener, HashSet<Long> list) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationCursor.java463 // conversations in pieces.
760 * cache. Notably, conversations which are marked as deleted in the cache but which haven't yet
2033 * Update an integer column for a group of conversations (see updateValues below)
2035 public int updateInt(Collection<Conversation> conversations, String columnName, argument
2038 LogUtils.d(LOG_TAG, "ConversationCursor.updateInt(conversations=%s, columnName=%s)",
2039 conversations.toArray(), columnName);
2043 return updateValues(conversations, cv);
2047 * Update a string column for a group of conversations (see updateValues below)
2049 public int updateBoolean(Collection<Conversation> conversations, String columnName, argument
2053 return updateValues(conversations, c
2059 updateString(Collection<Conversation> conversations, String columnName, String value) argument
2071 updateStrings(Collection<Conversation> conversations, String[] columnNames, String[] values) argument
2087 updateValues(Collection<Conversation> conversations, ContentValues values) argument
2091 updateValues(Collection<Conversation> conversations, ContentValues values, UndoCallback undoCallback) argument
2108 getOperationsForConversations( Collection<Conversation> conversations, int type, ContentValues values, UndoCallback undoCallback) argument
2196 delete(Collection<Conversation> conversations) argument
2200 delete(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2207 archive(Collection<Conversation> conversations) argument
2211 archive(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2218 mute(Collection<Conversation> conversations) argument
2222 mute(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2229 reportSpam(Collection<Conversation> conversations) argument
2233 reportSpam(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2240 reportNotSpam(Collection<Conversation> conversations) argument
2244 reportNotSpam(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2251 reportPhishing(Collection<Conversation> conversations) argument
2255 reportPhishing(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2262 discardDrafts(Collection<Conversation> conversations) argument
2266 discardDrafts(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2273 moveFailedIntoDrafts(Collection<Conversation> conversations) argument
2281 mostlyArchive(Collection<Conversation> conversations) argument
2285 mostlyArchive(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2292 mostlyDelete(Collection<Conversation> conversations) argument
2296 mostlyDelete(Collection<Conversation> conversations, UndoCallback undoCallback) argument
2303 mostlyDestructiveUpdate(Collection<Conversation> conversations, ContentValues values) argument
2308 mostlyDestructiveUpdate(Collection<Conversation> conversations, ContentValues values, UndoCallback undoCallback) argument
2322 applyAction(Collection<Conversation> conversations, int opAction, UndoCallback undoCallback) argument
[all...]

Completed in 87 milliseconds