HomeSort by relevance Sort by last modified time
    Searched defs:conversations (Results 1 - 12 of 12) sorted by null

  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
29 public class Conversations {
99 private Conversations() {
104 Conversation[] conversations = new Conversation[howManyConversations]; local
106 conversations[i] = new Conversation(
110 return conversations;
MessagingService.java 81 Conversations.Conversation[] conversations = Conversations.getUnreadConversations( local
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
29 public class Conversations {
99 private Conversations() {
104 Conversation[] conversations = new Conversation[howManyConversations]; local
106 conversations[i] = new Conversation(
110 return conversations;
MessagingService.java 81 Conversations.Conversation[] conversations = Conversations.getUnreadConversations( local
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
Conversations.java 25 * A simple class that denotes unread conversations and messages. In a real world application,
29 public class Conversations {
99 private Conversations() {
104 Conversation[] conversations = new Conversation[howManyConversations]; local
106 conversations[i] = new Conversation(
110 return conversations;
MessagingService.java 81 Conversations.Conversation[] conversations = Conversations.getUnreadConversations( local
83 for (Conversations.Conversation conv : conversations) {
88 private void sendNotificationForConversation(Conversations.Conversation conversation) {
  /external/scapy/scapy/
plist.py 288 def conversations(self, getsrcdst=None,**kargs): function
289 """Graphes a conversations between sources and destinations and display it
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
MultiSelectActionModeCallback.java 37 void onActionBarDelete(Collection<SelectedConversation> conversations);
38 void onActionBarArchive(Iterable<SelectedConversation> conversations,
40 void onActionBarNotification(Iterable<SelectedConversation> conversations,
178 // ParticipantNormalizedDestination is always null for group conversations.
191 final Iterable<SelectedConversation> conversations = mSelectedConversations.values(); local
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/
ConversationCheckedSet.java 39 * A simple thread-safe wrapper over a set of conversations representing a
83 Parcelable[] conversations = source.readParcelableArray(loader); local
84 for (Parcelable parceled : conversations) {
234 * Returns the number of conversations that are currently selected
235 * @return the number of selected conversations.
274 * Puts all conversations given in the input argument into the selection set. If there are
275 * any listeners they are notified once after adding <em>all</em> conversations to the selection
310 * Iterates through a cursor of conversations and ensures that the current set is present
311 * within the result set denoted by the cursor. Any conversations not foun in the result set
325 // First ask the ConversationCursor for the list of conversations that have been delete
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ReadWriteDraftMessageActionTest.java 227 final Cursor conversations = db.query(DatabaseHelper.CONVERSATIONS_TABLE, local
231 if (conversations.moveToFirst()) {
232 final String conversationId = conversations.getString(0);
271 assertEquals("Draft self differs", conversations.getString(1),
276 fail("No conversations in database");
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 61 * ContextMode} specific to operating on a set of conversations.
69 * The set of conversations to display the menu for.
263 final Collection<Conversation> conversations = mCheckedSet.values(); local
285 final CharSequence message = Utils.formatPlural(mContext, resId, conversations.size());
292 destroy(action, conversations, mUpdater.getDeferredBatchAction(action, undoCallback));
297 * Destroy these conversations through the conversation updater
299 * @param target conversations to destroy
309 * Marks the read state of currently selected conversations (<b>and</b> the backing storage)
311 * @param read is true if the conversations are to be marked as read, false if they are to be
316 // The conversations are marked read but not viewed
367 final Collection<Conversation> conversations = mCheckedSet.values(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockUiProvider.java 90 final ArrayList<Map<String, Object>> conversations = new ArrayList<Map<String, Object>>(); local
93 conversations.add(createConversationDetailsMap(accountId, name.hashCode(),
97 conversations); local
102 resultMap.put(conversations.get(0).get(ConversationColumns.MESSAGE_LIST_URI).toString(),
112 resultMap.put(conversations.get(1).get(ConversationColumns.MESSAGE_LIST_URI).toString(),

Completed in 634 milliseconds