HomeSort by relevance Sort by last modified time
    Searched refs:contact_id (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_map.cc 15 const Contact* ContactMap::Find(const std::string& contact_id) const {
16 Map::const_iterator it = contacts_.find(contact_id);
20 void ContactMap::Erase(const std::string& contact_id) {
21 Map::iterator it = contacts_.find(contact_id);
38 Map::iterator map_it = contacts_.find(contact->contact_id());
52 contacts_[contact->contact_id()] = contact;
contact_map.h 46 // Returns the contact with ID |contact_id|. NULL is returned if the contact
48 const Contact* Find(const std::string& contact_id) const;
50 // Deletes the contact with ID |contact_id|.
51 void Erase(const std::string& contact_id);
contact_manager_stub.cc 71 const std::string& contact_id) {
75 if (contacts_[i]->contact_id() == contact_id)
contact_store.h 33 // Returns the contact identified by |contact_id|.
35 virtual const Contact* GetContactById(const std::string& contact_id) = 0;
fake_contact_store.cc 32 contacts_[(*it)->contact_id()] = new Contact(**it);
54 const Contact* FakeContactStore::GetContactById(const std::string& contact_id) {
55 ContactMap::const_iterator it = contacts_.find(contact_id);
contact_manager_stub.h 35 const std::string& contact_id) OVERRIDE;
contact_manager.h 52 // Returns the contact identified by |contact_id|.
55 const std::string& contact_id) = 0;
85 const std::string& contact_id) OVERRIDE;
contact_test_util.h 45 // fields are cleared. |contact_id| corresponds to Contact::contact_id,
49 void InitContact(const std::string& contact_id,
fake_contact_store.h 43 virtual const Contact* GetContactById(const std::string& contact_id) OVERRIDE;
contact_database.cc 261 if (contact.contact_id() == kUpdateMetadataKey) {
263 << contact.contact_id();
266 updates.Put(leveldb::Slice(contact.contact_id()),
269 keys_to_delete.erase(contact.contact_id());
gdata_contacts_service.cc 686 << " id=" << contact->contact_id()
739 << contact->contact_id();
757 VLOG(1) << "Got photo data for " << contact->contact_id()
766 << "for " << contact->contact_id() << "; retrying";
774 << "for " << contact->contact_id() << "; skipping";
782 << "for " << contact->contact_id() << "; giving up";
    [all...]
contact_test_util.cc 75 contact.contact_id() + "," +
163 void InitContact(const std::string& contact_id,
169 contact->set_contact_id(contact_id);
google_contact_store.h 87 virtual const Contact* GetContactById(const std::string& contact_id) OVERRIDE;
contact_manager.cc 117 const std::string& contact_id) {
122 it->second->GetContactById(contact_id) :
google_contact_store.cc 161 const std::string& contact_id) {
163 return contacts_.Find(contact_id);
307 contact_ids_to_delete_from_db->push_back(contact->contact_id());
gdata_contacts_service_unittest.cc 41 void InitContact(const std::string& contact_id,
52 contact->set_contact_id(contact_id);
  /external/chromium_org/chrome/browser/autocomplete/
contact_provider_chromeos.cc 64 const char ContactProvider::kMatchContactIdKey[] = "contact_id";
71 const std::string& contact_id,
78 contact_id(contact_id),
96 std::string contact_id; member in struct:ContactProvider::ContactData
185 ContactData(full_name, given_name, family_name, contact.contact_id(),
234 match.RecordAdditionalInfo(kMatchContactIdKey, contact.contact_id);
contact_provider_chromeos_unittest.cc 35 void InitContact(const std::string& contact_id,
40 contact->set_contact_id(contact_id);
273 EXPECT_EQ(exp_contact.contact_id(), match_id)
274 << "Expected contact ID " << exp_contact.contact_id()
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 290 contact_id = str(contact.key().id())
292 if ((next != None) and (next['i'] == contact_id)):

Completed in 1401 milliseconds