/external/chromium/chrome/browser/sync/glue/ |
D | autofill_change_processor.cc | 31 int64 id, const sync_pb::AutofillSpecifics& autofill) in AutofillChangeRecord() 34 autofill_(autofill) { } in AutofillChangeRecord() 213 DCHECK(changes[i].specifics.HasExtension(sync_pb::autofill)) in ApplyChangesFromSyncModel() 215 const sync_pb::AutofillSpecifics& autofill = in ApplyChangesFromSyncModel() local 216 changes[i].specifics.GetExtension(sync_pb::autofill); in ApplyChangesFromSyncModel() 217 if (autofill.has_value() || in ApplyChangesFromSyncModel() 218 (autofill_profile_not_migrated && autofill.has_profile())) { in ApplyChangesFromSyncModel() 221 autofill)); in ApplyChangesFromSyncModel() 240 const sync_pb::AutofillSpecifics& autofill( in ApplyChangesFromSyncModel() local 243 if (autofill.has_value() || in ApplyChangesFromSyncModel() [all …]
|
D | autofill_model_associator.cc | 83 const sync_pb::AutofillSpecifics& autofill(node.GetAutofillSpecifics()); in TraverseAndAssociateChromeAutofillEntries() local 84 DCHECK_EQ(tag, KeyToTag(UTF8ToUTF16(autofill.name()), in TraverseAndAssociateChromeAutofillEntries() 85 UTF8ToUTF16(autofill.value()))); in TraverseAndAssociateChromeAutofillEntries() 88 if (MergeTimestamps(autofill, ix->timestamps(), ×tamps)) { in TraverseAndAssociateChromeAutofillEntries() 266 const sync_pb::AutofillSpecifics& autofill( in TraverseAndAssociateAllSyncNodes() local 269 if (autofill.has_value()) { in TraverseAndAssociateAllSyncNodes() 270 AddNativeEntryIfNeeded(autofill, bundle, sync_child); in TraverseAndAssociateAllSyncNodes() 271 } else if (autofill.has_profile()) { in TraverseAndAssociateAllSyncNodes() 275 << autofill.profile().name_first() in TraverseAndAssociateAllSyncNodes() 276 << autofill.profile().name_last(); in TraverseAndAssociateAllSyncNodes() [all …]
|
D | autofill_profile_model_associator.cc | 97 const sync_pb::AutofillProfileSpecifics& autofill( in TraverseAndAssociateChromeAutofillProfiles() local 99 if (OverwriteProfileWithServerData(*ix, autofill)) { in TraverseAndAssociateChromeAutofillProfiles() 374 const sync_pb::AutofillProfileSpecifics& autofill( in TraverseAndAssociateAllSyncNodes() local 377 AddNativeProfileIfNeeded(autofill, bundle, sync_child); in TraverseAndAssociateAllSyncNodes() 459 const std::string* autofill, in Associate() argument 463 DCHECK(id_map_.find(*autofill) == id_map_.end()); in Associate() 465 id_map_[*autofill] = sync_id; in Associate() 466 id_map_inverse_[sync_id] = *autofill; in Associate() 479 const std::string& autofill) { in GetSyncIdFromChromeId() argument 480 AutofillToSyncIdMap::const_iterator iter = id_map_.find(autofill); in GetSyncIdFromChromeId()
|
D | autofill_change_processor.h | 92 const sync_pb::AutofillSpecifics& autofill, 102 const sync_pb::AutofillSpecifics& autofill);
|
D | autofill_model_associator.h | 95 static bool MergeTimestamps(const sync_pb::AutofillSpecifics& autofill, 159 void AddNativeEntryIfNeeded(const sync_pb::AutofillSpecifics& autofill,
|
D | autofill_profile_change_processor.cc | 95 const sync_pb::AutofillProfileSpecifics& autofill( in ApplyChangesFromSyncModel() local 100 autofill)); in ApplyChangesFromSyncModel()
|
/external/chromium/chrome/browser/resources/options/ |
D | autofill_overlay.css | 1 #autofill-edit-address-overlay { 5 #autofill-edit-credit-card-overlay { 25 #autofill-edit-address-overlay list#full-name-list { 29 #autofill-edit-address-overlay list#full-name-list div.static-text { 33 #autofill-edit-address-overlay list#full-name-list input { 46 #autofill-edit-address-overlay list { 52 #autofill-edit-address-overlay list div.static-text { 61 #autofill-edit-address-overlay list input {
|
D | autofill_options.css | 1 .autofill-list-item { 8 .autofill-list-item + img { 13 #autofill-options > div:last-child { 17 #autofill-options > div.settings-list > div:last-child { 22 #autofill-add-address, 23 #autofill-add-creditcard {
|
/external/chromium/chrome/browser/sync/protocol/ |
D | autofill_specifics.proto | 5 // Sync protocol datatype extension for autofill. 19 // Properties of autofill sync objects. 77 // that this entity represents a classic autofill object. In this case, 78 // none of the autofill++ objects below should be present. 83 // An autofill++ profile object. If present, indicates this entity 90 // an autofill++ CreditCard, and no other fields should be present. 91 // If encryption for autofill++ is not enabled, this is unused. See 95 // If encryption for autofill++ is not enabled, this field stores the 101 optional AutofillSpecifics autofill = 31729; field
|
D | proto_value_conversions_unittest.cc | 142 SET_EXTENSION(autofill); in TEST_F()
|
/external/chromium/ |
D | Android.mk | 358 android/autofill/android_url_request_context_getter.cc \ 359 android/autofill/profile_android.cc \ 360 android/autofill/url_fetcher_proxy.cc \ 366 chrome/browser/autofill/address.cc \ 367 chrome/browser/autofill/address_field.cc \ 368 chrome/browser/autofill/autofill_country.cc \ 369 chrome/browser/autofill/autofill_download.cc \ 370 chrome/browser/autofill/autofill_field.cc \ 371 chrome/browser/autofill/autofill_manager.cc \ 372 chrome/browser/autofill/autofill_metrics.cc \ [all …]
|
/external/chromium/chrome/browser/password_manager/ |
D | password_store_win.cc | 126 PasswordForm* autofill = new PasswordForm(form); in GetIE7Result() local 127 autofill->username_value = username; in GetIE7Result() 128 autofill->password_value = password; in GetIE7Result() 129 autofill->preferred = true; in GetIE7Result() 130 autofill->ssl_valid = form.origin.SchemeIsSecure(); in GetIE7Result() 131 autofill->date_created = info.date_created; in GetIE7Result() 134 password_store_->AddLoginImpl(*autofill); in GetIE7Result() 135 return autofill; in GetIE7Result()
|
/external/chromium/chrome/browser/autofill/ |
D | select_control_handler_unittest.cc | 27 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field); in TEST() 46 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field); in TEST() 65 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field); in TEST() 83 autofill::FillSelectControl(credit_card, CREDIT_CARD_EXP_MONTH, &field); in TEST() 101 autofill::FillSelectControl(profile, ADDRESS_HOME_COUNTRY, &field); in TEST() 119 autofill::FillSelectControl(profile, ADDRESS_HOME_COUNTRY, &field); in TEST() 137 autofill::FillSelectControl(profile, ADDRESS_HOME_STATE, &field); in TEST() 155 autofill::FillSelectControl(profile, ADDRESS_HOME_STATE, &field); in TEST()
|
D | form_field.cc | 73 namespace autofill { namespace 129 if (autofill::MatchString(field->label, pattern)) { in Match() 136 if (autofill::MatchString(field->label, pattern) || in Match() 137 autofill::MatchString(field->name, pattern)) { in Match() 227 if (autofill::MatchString(field->label, pattern) && in ParseLabelAndName() 228 autofill::MatchString(field->name, pattern)) { in ParseLabelAndName()
|
D | select_control_handler.h | 18 namespace autofill {
|
D | personal_data_manager_mac.mm | 5 #include "chrome/browser/autofill/personal_data_manager.h" 13 #include "chrome/browser/autofill/autofill_profile.h" 14 #include "chrome/browser/autofill/phone_number.h"
|
D | form_field.h | 170 namespace autofill {
|
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/ |
D | AutoFillHostAndroid.cpp | 33 AutoFillHostAndroid::AutoFillHostAndroid(WebAutofill* autofill) in AutoFillHostAndroid() argument 34 : mAutofill(autofill) in AutoFillHostAndroid()
|
D | AutoFillHostAndroid.h | 43 AutoFillHostAndroid(WebAutofill* autofill);
|
/external/chromium/net/tools/testserver/ |
D | chromiumsync_test.py | 346 autofill = autofill_specifics_pb2.autofill 350 msg.requested_types.Extensions[autofill].SetInParent() 373 marker.data_type_id = autofill.number 389 self.assertEqual(marker.data_type_id, autofill.number) 396 marker.data_type_id = autofill.number 433 self.assertEqual(marker.data_type_id, autofill.number) 440 marker.data_type_id = autofill.number 459 self.assertEqual(marker.data_type_id, autofill.number) 465 marker.data_type_id = autofill.number 484 self.assertEqual(marker.data_type_id, autofill.number)
|
/external/chromium/chrome/browser/sync/ |
D | profile_sync_service_autofill_unittest.cc | 384 const sync_pb::AutofillSpecifics& autofill( in GetAutofillEntriesFromSyncDB() local 386 if (autofill.has_value()) { in GetAutofillEntriesFromSyncDB() 387 AutofillKey key(UTF8ToUTF16(autofill.name()), in GetAutofillEntriesFromSyncDB() 388 UTF8ToUTF16(autofill.value())); in GetAutofillEntriesFromSyncDB() 390 int timestamps_count = autofill.usage_timestamp_size(); in GetAutofillEntriesFromSyncDB() 393 autofill.usage_timestamp(i))); in GetAutofillEntriesFromSyncDB() 396 } else if (autofill.has_profile()) { in GetAutofillEntriesFromSyncDB() 398 p.set_guid(autofill.profile().guid()); in GetAutofillEntriesFromSyncDB() 400 autofill.profile()); in GetAutofillEntriesFromSyncDB() 421 const sync_pb::AutofillProfileSpecifics& autofill( in GetAutofillProfilesFromSyncDBUnderProfileNode() local [all …]
|
/external/webkit/Source/WebKit/ |
D | Android.mk | 133 android/WebCoreSupport/autofill/AutoFillHostAndroid.cpp \ 134 android/WebCoreSupport/autofill/FormManagerAndroid.cpp \ 135 android/WebCoreSupport/autofill/WebAutofill.cpp
|
/external/chromium/chrome/browser/sync/engine/ |
D | download_updates_command_unittest.cc | 54 v.ExpectHasExtension(sync_pb::autofill); in TEST_F() 90 v.ExpectHasExtension(sync_pb::autofill); in TEST_F()
|
/external/webkit/Source/WebKit/win/Interfaces/ |
D | DOMPrivate.idl | 54 …All the methods in this category are used by Safari forms autofill and should not be used for any … 121 …All the methods in this category are used by Safari forms autofill and should not be used for any …
|
/external/chromium/chrome/browser/sync/syncable/ |
D | model_type.cc | 37 specifics->MutableExtension(sync_pb::autofill); in AddDefaultExtensionValue() 160 if (specifics.HasExtension(sync_pb::autofill)) in GetModelTypeFromSpecifics()
|