HomeSort by relevance Sort by last modified time
    Searched refs:Contact (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/chromium_org/chrome/browser/extensions/api/rtc_private/
rtc_private_api.h 10 class Contact;
18 // Contact launch intent action.
28 // event. Optional |contact| information is passed as event payload if launch
29 // event is related to a particilar contact.
32 const contacts::Contact* contact);
rtc_private_apitest.cc 5 #include "chrome/browser/chromeos/contacts/contact.pb.h"
23 // Test contact data.
24 const char kContactFullName[] = "Test Contact";
42 static contacts::Contact* CreateTestContact() {
43 contacts::Contact* contact = new contacts::Contact(); local
44 contact->set_full_name(kContactFullName);
46 contact->mutable_email_addresses()->Add();
49 contact->mutable_email_addresses()->Add()
    [all...]
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_test_util.h 11 #include "chrome/browser/chromeos/contacts/contact.pb.h"
16 typedef std::vector<const Contact*> ContactPointers;
21 // Returns a string containing the information stored in |contact|. The same
24 std::string ContactToString(const Contact& contact);
29 std::string ContactsToString(const ScopedVector<Contact>& contacts);
32 // const Contact* arguments.
40 ScopedVector<Contact>* dest);
41 void CopyContacts(const ScopedVector<Contact>& source,
42 ScopedVector<Contact>* dest)
    [all...]
contact_map_unittest.cc 10 #include "chrome/browser/chromeos/contacts/contact.pb.h"
22 // Create a contact.
24 scoped_ptr<Contact> contact1(new Contact);
28 scoped_ptr<ScopedVector<Contact> > contacts_to_merge(
29 new ScopedVector<Contact>);
30 contacts_to_merge->push_back(new Contact(*contact1));
37 // Create a second, deleted contact.
39 scoped_ptr<Contact> contact2(new Contact);
    [all...]
contact_store.h 17 class Contact;
18 typedef std::vector<const Contact*> ContactPointers;
33 // Returns the contact identified by |contact_id|.
34 // NULL is returned if the contact doesn't exist.
35 virtual const Contact* GetContactById(const std::string& contact_id) = 0;
contact_map.h 19 class Contact;
21 // Stores Contact objects indexed by their IDs.
24 typedef std::map<std::string, Contact*> Map;
27 // What should Merge() do when passed a deleted contact?
29 // The deleted contact will be inserted into the map.
32 // The deleted contact will not be deleted from the map, and if there is a
33 // previous version of the now-deleted contact already in the map, it will
46 // Returns the contact with ID |contact_id|. NULL is returned if the contact
48 const Contact* Find(const std::string& contact_id) const
    [all...]
gdata_contacts_service_stub.h 15 typedef std::vector<const contacts::Contact*> ContactPointers;
58 ScopedVector<contacts::Contact> contacts_;
gdata_contacts_service_unittest.cc 12 #include "chrome/browser/chromeos/contacts/contact.pb.h"
36 // Filename of JSON feed containing contact groups.
42 // Initializes |contact| using the passed-in values.
52 contacts::Contact* contact) {
53 DCHECK(contact);
54 contact->set_contact_id(contact_id);
59 contact->set_update_time(update_time.ToInternalValue());
60 contact->set_deleted(deleted);
61 contact->set_full_name(full_name)
307 contacts::Contact* contact = new contacts::Contact; local
311 contacts::test::SetPhoto(gfx::Size(kPhotoSize, kPhotoSize), contact); local
    [all...]
contact_map.cc 7 #include "chrome/browser/chromeos/contacts/contact.pb.h"
15 const Contact* ContactMap::Find(const std::string& contact_id) const {
33 void ContactMap::Merge(scoped_ptr<ScopedVector<Contact> > updated_contacts,
35 for (ScopedVector<Contact>::iterator it = updated_contacts->begin();
37 Contact* contact = *it; local
38 Map::iterator map_it = contacts_.find(contact->contact_id());
40 if (contact->deleted() && policy == DROP_DELETED_CONTACTS) {
41 // Also delete the previous version of the contact, if any.
46 delete contact;
    [all...]
fake_contact_store.h 23 class Contact;
25 typedef std::vector<const Contact*> ContactPointers;
43 virtual const Contact* GetContactById(const std::string& contact_id) OVERRIDE;
48 // Map from a contact's ID to the contact itself.
49 typedef std::map<std::string, Contact*> ContactMap;
56 // Owns the pointed-to Contact values.
contact_database.h 30 class Contact;
32 typedef std::vector<const Contact*> ContactPointers;
34 // Interface for classes providing persistent storage of Contact objects.
41 scoped_ptr<ScopedVector<Contact> >,
59 // underlying passed-in Contact objects until the callback has been invoked.
107 scoped_ptr<ScopedVector<Contact> > contacts,
122 ScopedVector<Contact>* contacts,
google_contact_store_unittest.cc 11 #include "chrome/browser/chromeos/contacts/contact.pb.h"
99 scoped_ptr<Contact> contact1(new Contact);
101 scoped_ptr<Contact> contact2(new Contact);
120 // Check that we can also grab the contact via its ID.
121 const Contact* loaded_contact1 = store_->GetContactById(kContactId1);
125 // We should get NULL if we request a nonexistent contact.
131 scoped_ptr<Contact> contact1(new Contact);
    [all...]
fake_contact_database.cc 7 #include "chrome/browser/chromeos/contacts/contact.pb.h"
59 scoped_ptr<ScopedVector<Contact> > contacts(new ScopedVector<Contact>());
64 contacts->push_back(new Contact(*it->second));
77 scoped_ptr<ScopedVector<Contact> > copied_contacts(new ScopedVector<Contact>);
79 copied_contacts->push_back(new Contact(*updated_contacts[i]));
contact_test_util.cc 73 std::string ContactToString(const Contact& contact) {
75 contact.contact_id() + "," +
76 base::Int64ToString(contact.update_time()) + "," +
77 base::IntToString(contact.deleted()) + "," +
78 contact.full_name() + "," +
79 contact.given_name() + "," +
80 contact.additional_name() + "," +
81 contact.family_name() + "," +
82 contact.name_prefix() + ","
    [all...]
contact_manager_stub.h 34 virtual const Contact* GetContactById(Profile* profile,
46 ScopedVector<Contact> contacts_;
gdata_contacts_service_stub.cc 9 #include "chrome/browser/chromeos/contacts/contact.pb.h"
58 scoped_ptr<ScopedVector<contacts::Contact> > contacts(
59 new ScopedVector<contacts::Contact>());
contact_manager.h 25 class Contact;
26 typedef std::vector<const Contact*> ContactPointers;
48 // returned Contact objects may not persist indefinitely; the caller must not
52 // Returns the contact identified by |contact_id|.
53 // NULL is returned if the contact doesn't exist.
54 virtual const Contact* GetContactById(Profile* profile,
84 virtual const Contact* GetContactById(Profile* profile,
  /external/nist-sip/java/gov/nist/javax/sip/header/
ContactList.java 36 * List of contact headers.ContactLists are also maintained in a hashtable
42 public class ContactList extends SIPHeaderList<Contact> {
55 super(Contact.class, ContactHeader.NAME);
  /packages/apps/Mms/src/com/android/mms/data/
ContactList.java 14 public class ContactList extends ArrayList<Contact> {
21 list.add(Contact.get(number, canBlock));
33 Contact contact = Contact.get(number, canBlock); local
35 contact.setNumber(number);
37 list.add(contact);
46 * for the numbers don't belong to any contact.
56 Contact contact = Contact.get(uri.getSchemeSpecificPart(), true) local
76 Contact contact = Contact.get(entry.number, canBlock); local
    [all...]
Contact.java 40 public class Contact {
44 public static final int CONTACT_METHOD_TYPE_SELF = 3; // the "Me" or profile contact
48 private static final String TAG = "Contact";
56 // log("contact changed, invalidate cache");
75 // Contact, -1 is invalid. e.g. contact method id is 20 when
76 // current contact has phone content://.../phones/20.
93 private boolean mIsMe; // true if this contact is me!
94 private boolean mSendToVoicemail; // true if this contact should not put up notification
97 public void onUpdate(Contact updated)
557 Contact contact = internalGet(number, isMe); local
787 Contact contact = getContactInfoForEmailAddress(c.mNumber); local
    [all...]
  /external/compiler-rt/
README.android 20 * Recent downstreaming on 2013/8/8: Synced to r187889 (Contact srhines for merge questions.)
21 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.)
22 * Recent downstreaming on 2013/5/3: Synced to r180792 (Contact srhines for merge questions.)
23 * Recent downstreaming on 2013/3/18: Synced to r177337 (Contact srhines for merge questions.)
24 * Recent downstreaming on 2013/3/5: Synced to r176091 (Contact srhines for merge questions.)
25 * Recent downstreaming on 2013/1/8: Synced to r171802 (Contact srhines for merge questions.)
26 * Recent downstreaming on 2012/08/23: Synced to r162279 (Contact srhines for merge questions.)
27 * Recent downstreaming on 2012/08/15: Synced to r159129 (Contact sliao for merge questions.)
28 * Cherry-pick on 2012/07/27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines for merge questions.)
29 * Cherry-pick on 2012/05/23: https://llvm.org/svn/llvm-project/compiler-rt/trunk@157318 for ASan (Contact srhines for merge questions.
    [all...]
  /external/llvm/
README.android 26 * Recent downstreaming on 2013/8/8: Synced to r187913 (Contact srhines for merge questions.)
27 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.)
28 * Recent downstreaming on 2013/5/3: Synced to r180947 (Contact srhines for merge questions.)
29 * Recent downstreaming on 2013/3/18: Synced to r177342 (Contact srhines for merge questions.)
30 * Recent downstreaming on 2013/3/5: Synced to r176139 (Contact srhines for merge questions.)
31 * Recent downstreaming on 2013/1/8: Synced to r171905 (Contact srhines for merge questions.)
32 * Recent downstreaming on 2012/8/23: Synced to r162314 (Contact srhines for merge questions.)
33 * Recent downstreaming on 2012/8/3: Synced to r160668 (Contact sliao for merge questions.)
34 * Cherry-pick on 2012/05/23: https://llvm.org/svn/llvm-project/llvm/trunk@157317 (Contact srhines for merge questions.)
35 * Recent downstreaming on 2012/4/24: Synced to r155090 (Contact sliao for merge questions.
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java 26 import com.android.contacts.common.model.Contact;
31 * Service that sends out a view notification for a contact. At the moment, this is only
46 contactLoader.registerListener(0, new OnLoadCompleteListener<Contact>() {
48 public void onLoadComplete(Loader<Contact> loader, Contact data) {
  /external/chromium_org/third_party/mesa/src/docs/
MESA_release_buffers.spec 9 Contact
  /external/mesa3d/docs/
MESA_release_buffers.spec 9 Contact

Completed in 376 milliseconds

1 2 3 4 5 6