Searched defs:contact (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
H A Dbackground.js29 var contact = {
38 contact['emails'].push(email['address']);
42 if (!contact['name']) {
43 contact['name'] = contact['emails'][0] || "<Unknown>";
45 contacts.push(contact);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DContactParser.java38 * A parser for The SIP contact header.
45 public ContactParser(String contact) { argument
46 super(contact);
59 Contact contact = new Contact();
64 contact.setWildCardFlag(true);
66 super.parse(contact);
69 super.parse(contact);
71 retval.add(contact);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Drostermodule_unittest.cc146 WriteContact(std::ostream& os, const XmppRosterContact* contact) { argument
147 if (contact == NULL) {
153 WriteString(os, contact->jid().Str());
155 WriteString(os, contact->name());
157 WriteSubscriptionState(os, contact->subscription_state());
159 for(size_t i=0; i < contact->GetGroupCount(); ++i) {
161 WriteString(os, contact->GetGroup(i));
163 os<<"]]"<<contact->raw_xml()->Str();
204 //! A contact has changed
205 //! This indicates that the data for a contact ma
[all...]
H A Drostermoduleimpl.cc731 bool operator() (XmppRosterContactImpl *& contact) { argument
732 return contact->jid() == jid_;
754 const XmppRosterContact* contact) {
755 if (!contact)
758 Jid jid = contact->jid();
766 const XmlElement* contact_xml = contact->raw_xml();
917 XmppRosterContact* contact = *pos; local
919 delete contact;
955 bool operator() (XmppPresenceImpl *& contact) { argument
956 return contact
753 RequestRosterChange( const XmppRosterContact* contact) argument
1052 XmppRosterContact* contact = *pos; local
1068 XmppRosterContactImpl* contact = new XmppRosterContactImpl(); local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPDialog.java806 * Add a route list extacted from the contact list of the incoming message.
808 * @param contactList -- contact list extracted from the incoming message.
812 void setRemoteTarget(ContactHeader contact) { argument
813 this.remoteTarget = contact.getAddress();
1353 // put the contact header from the incoming request into
1935 * The default contact header is obtained from the provider. The application can override
2851 Contact contact = (Contact) contactList.getFirst();
2852 this.setRemoteTarget(contact);
3096 * Get the contact header that the owner of this dialog assigned. Subsequent Requests are
3097 * considered to belong to the dialog if the dialog identifier matches and the contact heade
[all...]

Completed in 217 milliseconds