/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
mucroomdiscoverytask.cc | 58 // Get the conversation id 59 const XmlElement* conversation = local 62 if (conversation != NULL) { 63 conversation_id = conversation->BodyText();
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationSelectionSet.java | 24 import com.android.mail.providers.Conversation; 40 * selection set (e.g. in a conversation list). This class dispatches changes 67 /** Map of conversation ID to conversation objects. Every selected conversation is here. */ 68 private final HashMap<Long, Conversation> mInternalMap = new HashMap<Long, Conversation>(); 69 /** Map of Conversation URI to Conversation ID. */ 85 Conversation conversation = (Conversation) parceled local [all...] |
AbstractActivityController.java | 82 import com.android.mail.providers.Conversation; 147 private static final String SAVED_CONVERSATION = "saved-conversation"; 166 "saved-conversation-list-scroll-positions"; 170 /** Tag used when loading a conversation list fragment. */ 171 public static final String TAG_CONVERSATION_LIST = "tag-conversation-list"; 191 protected Conversation mCurrentConversation; 197 /** A map of {@link Folder} {@link Uri} to scroll position in the conversation list. */ 378 * An additional complication arises if we have to view a specific conversation within this 379 * folder. This is the case when launching the app from a single conversation notification 380 * or tapping on a specific conversation in the widget. In these cases, the conversation i 2241 final Conversation conversation = savedState.getParcelable(SAVED_CONVERSATION); local [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationListItem.java | 41 import com.android.mms.data.Conversation; 44 * This class manages the view for given conversation. 63 private Conversation mConversation; 92 public Conversation getConversation() { 175 public final void bind(Context context, final Conversation conversation) { 178 mConversation = conversation; 183 boolean hasError = conversation.hasError(); 193 boolean hasAttachment = conversation.hasAttachment(); 197 mDateView.setText(MessageUtils.formatTimeStampString(context, conversation.getDate())) [all...] |
ComposeMessageActivity.java | 130 import com.android.mms.data.Conversation; 131 import com.android.mms.data.Conversation.ConversationQueryHandler; 156 * 2. Viewing/managing message history of a conversation. 160 * thread_id long Identify the conversation to be viewed. When creating a 163 * address String The addresses of the recipients in current conversation. 234 // When the conversation has a lot of messages and a new message is sent, the list is scrolled 258 private Conversation mConversation; // Conversation we are working in 276 private MessageListView mMsgListView; // ListView for messages in this conversation 2005 Conversation conversation = null; local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationItemViewModel.java | 32 import com.android.mail.providers.Conversation; 45 * This is the view model for the conversation header. It includes all the 46 * information needed to layout a conversation header view. Each view model is 47 * associated with a conversation and is cached to improve the relayout time. 62 // The hashcode used to detect if the conversation has changed. 109 public Conversation conversation; field in class:ConversationItemViewModel 142 * Returns the view model for a conversation. If the model doesn't exist for this conversation 145 * @param account the account contains this conversation [all...] |
MessageHeaderView.java | 59 import com.android.mail.providers.Conversation; 443 final Conversation conversation = mMessage.getConversation(); local 444 if (conversation != null) { 445 for (Folder folder : conversation.getRawFolders()) { [all...] |
ConversationCursor.java | 42 import com.android.mail.providers.Conversation; 72 * ConversationCursor is a wrapper around a conversation list cursor that provides update/delete 135 private final List<Conversation> mMostlyDead = Lists.newArrayList(); 138 private final Set<Conversation> mNotificationTempDeleted = Sets.newHashSet(); 255 public Conversation conversation; field in class:ConversationCursor.UnderlyingRowData 257 public UnderlyingRowData(String innerUri, Conversation conversation) { 259 this.conversation = conversation; [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Conversation.java | 44 public class Conversation implements Parcelable { 179 * Used within the UI to indicate the adapter position of this conversation 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, 203 /** An immutable, empty conversation list */ 204 public static final Collection<Conversation> EMPTY = Collections.emptyList(); 245 private Conversation(Parcel in, ClassLoader loader) { 284 final StringBuilder sb = new StringBuilder("[conversation id="); 294 public static final ClassLoaderCreator<Conversation> CREATOR = 295 new ClassLoaderCreator<Conversation>() { 427 final Conversation conversation = new Conversation(); local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
NotificationActionUtils.java | 40 import com.android.mail.providers.Conversation; 67 * If a {@link Conversation} exists in this set, then the undo notification for this 68 * {@link Conversation} was tapped by the user in the notification drawer. 71 public static final Set<Conversation> sUndoneConversations = Sets.newHashSet(); 86 final Conversation conversation, final Message message) { 115 boolean shouldDisplayPrimary(Folder folder, Conversation conversation, Message message); 165 public int getActionIconResId(final Folder folder, final Conversation conversation, 631 final Conversation conversation = notificationAction.getConversation(); local 702 final Conversation conversation = notificationAction.getConversation(); local [all...] |
NotificationUtils.java | 57 import com.android.mail.providers.Conversation; 474 // Do not allow this quick check to disrupt any active network-enabled conversation 578 // Launch directly to the conversation, if there is only 1 unseen conversation 589 launchConversationMode ? "conversation" : "conversation_list", 674 * @return an {@link Intent} which, if launched, will display the corresponding conversation 689 // A conversation cursor has been specified, so this intent is intended to be go 690 // directly to the one new conversation 692 // Get the Conversation object 693 final Conversation conversation = new Conversation(cursor) local 781 final Conversation conversation = new Conversation(conversationCursor); local 854 final Conversation conversation = new Conversation(conversationCursor); local 1010 final Conversation conversation = new Conversation(conversationCursor); local 1076 final Conversation conversation = new Conversation(cursor); local [all...] |
/external/chromium/net/tools/spdyshark/ |
packet-spdy.c | 40 #include <epan/conversation.h> 285 conversation_t *conversation; local 289 conversation = find_conversation(pinfo->fd->num, &pinfo->src, &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo->destport, 0); 292 printf("Conversation for frame #%d is %p\n", pinfo->fd->num, conversation); 293 if (conversation) 294 printf(" conv_data=%p\n", conversation_get_proto_data(conversation, proto_spdy)); 297 if(!conversation) /* Conversation does not exist yet - create it */ 298 conversation = conversation_new(pinfo->fd->num, &pinfo->src, &pinfo->dst, pinfo->ptype, pinfo->srcport, pinfo-> (…) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
jdimodel.jar | |