Searched defs:autofill (Results 151 - 175 of 490) sorted by relevance

1234567891011>>

/external/chromium_org/components/autofill/core/browser/
H A Dautofill-inl.h8 namespace autofill { namespace
37 } // namespace autofill
H A Dautofill_data_model.h11 #include "components/autofill/core/browser/form_group.h"
13 namespace autofill { namespace
56 } // namespace autofill
H A Dautofill_driver.h10 #include "components/autofill/core/common/form_data.h"
20 namespace autofill { namespace
89 } // namespace autofill
H A Dautofill_regexes_unittest.cc5 #include "components/autofill/core/browser/autofill_regexes.h"
9 #include "components/autofill/core/browser/autofill_regex_constants.h"
14 namespace autofill { namespace
41 EXPECT_TRUE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
61 EXPECT_FALSE(autofill::MatchesPattern(ASCIIToUTF16(test_case.input),
66 } // namespace autofill
H A Dautofill_type.h10 #include "components/autofill/core/browser/field_types.h"
12 namespace autofill { namespace
57 } // namespace autofill
H A Dname_field_unittest.cc8 #include "components/autofill/core/browser/autofill_field.h"
9 #include "components/autofill/core/browser/autofill_scanner.h"
10 #include "components/autofill/core/browser/name_field.h"
11 #include "components/autofill/core/common/form_field_data.h"
16 namespace autofill { namespace
313 } // namespace autofill
H A Dphone_field_unittest.cc8 #include "components/autofill/core/browser/autofill_field.h"
9 #include "components/autofill/core/browser/autofill_scanner.h"
10 #include "components/autofill/core/browser/phone_field.h"
11 #include "components/autofill/core/common/form_field_data.h"
16 namespace autofill { namespace
232 } // namespace autofill
H A Dtest_autofill_external_delegate.cc5 #include "components/autofill/core/browser/test_autofill_external_delegate.h"
9 namespace autofill { namespace
29 } // namespace autofill
/external/chromium_org/components/autofill/core/common/
H A Dautofill_pref_names.cc5 #include "components/autofill/core/common/autofill_pref_names.h"
7 namespace autofill { namespace
13 "autofill.auxiliary_profiles_enabled";
16 const char kAutofillEnabled[] = "autofill.enabled";
23 "autofill.auxiliary_profiles_queried";
29 "autofill.mac_address_book_prompt_showed_count";
32 const char kAutofillNegativeUploadRate[] = "autofill.negative_upload_rate";
35 const char kAutofillPositiveUploadRate[] = "autofill.positive_upload_rate";
39 const char kAutofillUseMacAddressBook[] = "autofill.use_mac_address_book";
42 } // namespace autofill
[all...]
H A Dautofill_switches.cc5 #include "components/autofill/core/common/autofill_switches.h"
7 namespace autofill { namespace
22 // Removes the requirement that we recieved a ping from the autofill servers
28 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
42 } // namespace autofill
H A Dform_data.h11 #include "components/autofill/core/common/form_field_data.h"
14 namespace autofill { namespace
52 } // namespace autofill
H A Dform_data_predictions.cc5 #include "components/autofill/core/common/form_data_predictions.h"
7 namespace autofill { namespace
35 } // namespace autofill
H A Dform_data_unittest.cc5 #include "components/autofill/core/common/form_data.h"
9 #include "components/autofill/core/common/form_field_data.h"
17 void SerializeInVersion1Format(const autofill::FormData& form_data,
34 void SerializeIncorrectFormat(const autofill::FormData& form_data,
48 namespace autofill { namespace
177 } // namespace autofill
H A Dform_field_data_predictions.cc5 #include "components/autofill/core/common/form_field_data_predictions.h"
7 namespace autofill { namespace
38 } // namespace autofill
H A Dform_field_data_predictions.h11 #include "components/autofill/core/common/form_field_data.h"
13 namespace autofill { namespace
32 } // namespace autofill
H A Dpassword_form_fill_data_unittest.cc5 #include "components/autofill/core/common/password_form_fill_data.h"
8 #include "components/autofill/core/common/password_form.h"
14 namespace autofill { namespace
170 } // namespace autofill
H A Dweb_element_descriptor.h10 namespace autofill { namespace
29 } // namespace autofill
/external/chromium_org/components/password_manager/content/browser/
H A Dcontent_password_manager_driver.h16 namespace autofill { namespace
32 autofill::AutofillClient* autofill_client);
36 virtual void FillPasswordForm(const autofill::PasswordFormFillData& form_data)
41 const autofill::PasswordForm& form) OVERRIDE;
43 const std::vector<autofill::FormData>& forms) OVERRIDE;
52 virtual autofill::AutofillManager* GetAutofillManager() OVERRIDE;
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_consumer.h12 namespace autofill { namespace
31 const std::vector<autofill::PasswordForm*>& results) = 0;
H A Dpsl_matching_helper.h14 namespace autofill { namespace
16 } // namespace autofill
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dchrome_storage_impl.h18 namespace autofill { namespace
59 } // namespace autofill
H A Dchrome_storage_impl_unittest.cc14 namespace autofill { namespace
35 } // namespace autofill
H A Dfallback_data_store_unittest.cc15 namespace autofill { namespace
50 } // namespace autofill
H A Dtrie_unittest.cc13 namespace autofill { namespace
109 } // namespace autofill
/external/chromium_org/components/test/data/web_database/
H A Dversion_21.sql20 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); table
21 INSERT INTO "autofill" VALUES('Name','John Doe','john doe',10,1);
22 INSERT INTO "autofill" VALUES('Name','','',11,1);
23 INSERT INTO "autofill" VALUES('Email','jane@example.com','jane@example.com',20,3);
24 INSERT INTO "autofill" VALUES('Email','','',21,4);
37 CREATE INDEX autofill_name ON autofill (name);
38 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);

Completed in 163 milliseconds

1234567891011>>