/external/chromium_org/chrome/browser/chromeos/contacts/ |
D | contact_map_unittest.cc | 24 scoped_ptr<Contact> contact1(new Contact); in TEST() 28 scoped_ptr<ScopedVector<Contact> > contacts_to_merge( in TEST() 29 new ScopedVector<Contact>); in TEST() 30 contacts_to_merge->push_back(new Contact(*contact1)); in TEST() 39 scoped_ptr<Contact> contact2(new Contact); in TEST() 44 contacts_to_merge.reset(new ScopedVector<Contact>); in TEST() 45 contacts_to_merge->push_back(new Contact(*contact2)); in TEST() 54 contacts_to_merge.reset(new ScopedVector<Contact>); in TEST() 55 contacts_to_merge->push_back(new Contact(*contact1)); in TEST() 62 scoped_ptr<Contact> contact3(new Contact); in TEST() [all …]
|
D | contact_test_util.h | 16 typedef std::vector<const Contact*> ContactPointers; 24 std::string ContactToString(const Contact& contact); 29 std::string ContactsToString(const ScopedVector<Contact>& contacts); 40 ScopedVector<Contact>* dest); 41 void CopyContacts(const ScopedVector<Contact>& source, 42 ScopedVector<Contact>* dest); 52 Contact* contact); 59 Contact* contact); 66 Contact* contact); 73 Contact* contact); [all …]
|
D | google_contact_store_unittest.cc | 99 scoped_ptr<Contact> contact1(new Contact); in TEST_F() 101 scoped_ptr<Contact> contact2(new Contact); in TEST_F() 121 const Contact* loaded_contact1 = store_->GetContactById(kContactId1); in TEST_F() 131 scoped_ptr<Contact> contact1(new Contact); in TEST_F() 133 scoped_ptr<Contact> contact2(new Contact); in TEST_F() 155 scoped_ptr<Contact> contact1(new Contact); in TEST_F() 157 scoped_ptr<Contact> contact2(new Contact); in TEST_F() 159 scoped_ptr<Contact> contact3(new Contact); in TEST_F() 199 scoped_ptr<Contact> contact1(new Contact); in TEST_F() 201 scoped_ptr<Contact> contact2(new Contact); in TEST_F() [all …]
|
D | gdata_contacts_service_unittest.cc | 50 contacts::Contact* contact) { in InitContact() 111 scoped_ptr<ScopedVector<contacts::Contact> >* contacts) { in Download() 137 void OnSuccess(scoped_ptr<ScopedVector<contacts::Contact> > contacts) { in OnSuccess() 148 downloaded_contacts_.reset(new ScopedVector<contacts::Contact>()); in OnFailure() 174 scoped_ptr<ScopedVector<contacts::Contact> > downloaded_contacts_; 181 scoped_ptr<ScopedVector<contacts::Contact> > contacts; in TEST_F() 215 scoped_ptr<ScopedVector<contacts::Contact> > contacts; in TEST_F() 228 scoped_ptr<contacts::Contact> contact1(new contacts::Contact); in TEST_F() 241 scoped_ptr<contacts::Contact> contact2(new contacts::Contact); in TEST_F() 278 scoped_ptr<contacts::Contact> contact3(new contacts::Contact); in TEST_F() [all …]
|
D | contact_test_util.cc | 73 std::string ContactToString(const Contact& contact) { in ContactToString() 121 std::string ContactsToString(const ScopedVector<Contact>& contacts) { in ContactsToString() 133 contacts.push_back(va_arg(list, const Contact*)); in VarContactsToString() 148 ScopedVector<Contact>* dest) { in CopyContacts() 152 dest->push_back(new Contact(*source[i])); in CopyContacts() 155 void CopyContacts(const ScopedVector<Contact>& source, in CopyContacts() 156 ScopedVector<Contact>* dest) { in CopyContacts() 166 Contact* contact) { in InitContact() 184 Contact* contact) { in AddEmailAddress() 186 Contact::EmailAddress* email = contact->add_email_addresses(); in AddEmailAddress() [all …]
|
D | contact_database_unittest.cc | 98 void LoadContacts(scoped_ptr<ScopedVector<Contact> >* contacts_out, in LoadContacts() 124 scoped_ptr<ScopedVector<Contact> > contacts, in OnContactsLoaded() 145 scoped_ptr<ScopedVector<Contact> > loaded_contacts_; 155 scoped_ptr<Contact> contact(new Contact); in TEST_F() 185 scoped_ptr<ScopedVector<Contact> > loaded_contacts; in TEST_F() 223 scoped_ptr<Contact> contact1(new Contact); in TEST_F() 229 scoped_ptr<Contact> contact2(new Contact); in TEST_F() 245 scoped_ptr<ScopedVector<Contact> > loaded_contacts; in TEST_F() 327 scoped_ptr<Contact> contact(new Contact); in TEST_F() 339 scoped_ptr<ScopedVector<Contact> > loaded_contacts; in TEST_F() [all …]
|
D | fake_contact_database.cc | 59 scoped_ptr<ScopedVector<Contact> > contacts(new ScopedVector<Contact>()); in LoadContacts() 64 contacts->push_back(new Contact(*it->second)); in LoadContacts() 77 scoped_ptr<ScopedVector<Contact> > copied_contacts(new ScopedVector<Contact>); in MergeContacts() 79 copied_contacts->push_back(new Contact(*updated_contacts[i])); in MergeContacts()
|
D | contact_map.h | 19 class Contact; variable 24 typedef std::map<std::string, Contact*> Map; 48 const Contact* Find(const std::string& contact_id) const; 57 void Merge(scoped_ptr<ScopedVector<Contact> > updated_contacts,
|
D | contact_database.h | 30 class Contact; variable 32 typedef std::vector<const Contact*> ContactPointers; 41 scoped_ptr<ScopedVector<Contact> >, 107 scoped_ptr<ScopedVector<Contact> > contacts, 122 ScopedVector<Contact>* contacts,
|
D | contact_map.cc | 15 const Contact* ContactMap::Find(const std::string& contact_id) const { in Find() 33 void ContactMap::Merge(scoped_ptr<ScopedVector<Contact> > updated_contacts, in Merge() 35 for (ScopedVector<Contact>::iterator it = updated_contacts->begin(); in Merge() 37 Contact* contact = *it; in Merge()
|
D | fake_contact_store.h | 23 class Contact; variable 25 typedef std::vector<const Contact*> ContactPointers; 43 virtual const Contact* GetContactById(const std::string& contact_id) OVERRIDE; 49 typedef std::map<std::string, Contact*> ContactMap;
|
D | google_contact_store.h | 33 class Contact; variable 87 virtual const Contact* GetContactById(const std::string& contact_id) OVERRIDE; 113 scoped_ptr<ScopedVector<Contact> > updated_contacts); 119 scoped_ptr<ScopedVector<Contact> > updated_contacts); 132 scoped_ptr<ScopedVector<Contact> > contacts,
|
D | contact_store.h | 17 class Contact; variable 18 typedef std::vector<const Contact*> ContactPointers; 35 virtual const Contact* GetContactById(const std::string& contact_id) = 0;
|
D | contact_manager_unittest.cc | 118 scoped_ptr<Contact> contact1(new Contact); in TEST_F() 122 scoped_ptr<Contact> contact2(new Contact); in TEST_F() 144 const Contact* loaded_contact = contact_manager_->GetContactById(profile, in TEST_F()
|
D | contact_database.cc | 115 scoped_ptr<ScopedVector<Contact> > contacts(new ScopedVector<Contact>); in LoadContacts() 119 ScopedVector<Contact>* contacts_ptr = contacts.get(); in LoadContacts() 165 scoped_ptr<ScopedVector<Contact> > contacts, in RunLoadCallback() 260 const contacts::Contact& contact = **it; in SaveContactsFromTaskRunner() 297 ScopedVector<Contact>* contacts, in LoadContactsFromTaskRunner() 323 scoped_ptr<Contact> contact(new Contact); in LoadContactsFromTaskRunner()
|
D | contact_manager.h | 25 class Contact; variable 26 typedef std::vector<const Contact*> ContactPointers; 54 virtual const Contact* GetContactById(Profile* profile, 84 virtual const Contact* GetContactById(Profile* profile,
|
D | gdata_contacts_service_stub.h | 15 typedef std::vector<const contacts::Contact*> ContactPointers; 58 ScopedVector<contacts::Contact> contacts_;
|
D | contact_manager_stub.h | 34 virtual const Contact* GetContactById(Profile* profile, 46 ScopedVector<Contact> contacts_;
|
/external/llvm/ |
D | 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 f… 35 * Recent downstreaming on 2012/4/24: Synced to r155090 (Contact sliao for merge questions.) [all …]
|
/external/compiler-rt/ |
D | 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 …27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines for merge… 29 …23: https://llvm.org/svn/llvm-project/compiler-rt/trunk@157318 for ASan (Contact srhines for merge… [all …]
|
/external/chromium_org/chrome/browser/autocomplete/ |
D | contact_provider_chromeos_unittest.cc | 39 contacts::Contact* contact) { in InitContact() 94 const contacts::Contact* contact = contact_manager_->GetContactById( in GetMatchedContacts() 139 scoped_ptr<contacts::Contact> contact1(new contacts::Contact); in TEST_F() 143 scoped_ptr<contacts::Contact> contact2(new contacts::Contact); in TEST_F() 216 scoped_ptr<contacts::Contact> contact(new contacts::Contact); in TEST_F() 246 ScopedVector<contacts::Contact> contacts; in TEST_F() 249 contacts::Contact* contact = new contacts::Contact; in TEST_F() 270 const contacts::Contact& exp_contact = in TEST_F()
|
/external/clang/ |
D | README.android | 26 * Recent downstreaming on 2013/8/8: Synced to r187914 (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 r180944 (Contact srhines for merge questions.) 29 * Recent downstreaming on 2013/3/18: Synced to r177345 (Contact srhines for merge questions.) 30 * Recent downstreaming on 2013/3/5: Synced to r176138 (Contact srhines for merge questions.) 31 * Recent downstreaming on 2013/1/8: Synced to r171906 (Contact srhines for merge questions.)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
D | ContactParser.java | 28 import gov.nist.javax.sip.header.Contact; 59 Contact contact = new Contact(); in parse()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | ContactList.java | 42 public class ContactList extends SIPHeaderList<Contact> { 55 super(Contact.class, ContactHeader.NAME); in ContactList()
|
D | Contact.java | 55 public final class Contact class 77 public Contact() { in Contact() method in Contact 221 Contact retval = (Contact) super.clone(); in clone()
|