Searched refs:AutofillCountry (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/components/autofill/core/browser/
H A Dautofill_country_unittest.cc17 TEST(AutofillCountryTest, AutofillCountry) {
18 AutofillCountry united_states_en("US", "en_US");
24 AutofillCountry united_states_es("US", "es");
28 AutofillCountry canada_en("CA", "en_US");
34 AutofillCountry canada_hu("CA", "hu");
41 EXPECT_EQ("US", AutofillCountry::CountryCodeForLocale("en_US"));
42 EXPECT_EQ("CA", AutofillCountry::CountryCodeForLocale("fr_CA"));
43 EXPECT_EQ("FR", AutofillCountry::CountryCodeForLocale("fr"));
44 EXPECT_EQ("US", AutofillCountry::CountryCodeForLocale("Unknown"));
47 EXPECT_EQ("US", AutofillCountry
[all...]
H A Dautofill_country.h43 class AutofillCountry { class in namespace:autofill
47 AutofillCountry(const std::string& country_code, const std::string& locale);
48 ~AutofillCountry();
85 AutofillCountry(const std::string& country_code,
105 DISALLOW_COPY_AND_ASSIGN(AutofillCountry);
H A Daddress.cc148 return AutofillCountry(country_code_, app_locale).name();
171 country_code_ = AutofillCountry::GetCountryCode(value, app_locale);
196 std::string country_code = AutofillCountry::GetCountryCode(text, app_locale);
H A Dautofill_country.cc1051 AutofillCountry::AutofillCountry(const std::string& country_code, function in class:autofill::AutofillCountry
1064 AutofillCountry::~AutofillCountry() {
1068 void AutofillCountry::GetAvailableCountries(
1080 const std::string AutofillCountry::CountryCodeForLocale(
1102 const std::string AutofillCountry::GetCountryCode(const base::string16& country,
1107 AutofillCountry::AutofillCountry(const std::string& country_code, function in class:autofill::AutofillCountry
H A Dpersonal_data_manager.cc101 country_code = AutofillCountry::CountryCodeForLocale(app_locale);
103 AutofillCountry country(country_code, app_locale);
800 AutofillCountry::CountryCodeForLocale(app_locale())));
819 default_country_code_ = AutofillCountry::CountryCodeForLocale(app_locale());
1071 AutofillCountry::GetAvailableCountries(&country_codes);
H A Dautofill_field.cc178 std::string country_code = AutofillCountry::GetCountryCode(value, app_locale);
189 if (country_code == AutofillCountry::GetCountryCode(value, app_locale) ||
190 country_code == AutofillCountry::GetCountryCode(contents, app_locale)) {
H A Dphone_number.cc30 return AutofillCountry::CountryCodeForLocale(app_locale);
H A Dphone_number_i18n.cc28 return AutofillCountry::CountryCodeForLocale(app_locale);
/external/chromium_org/chrome/browser/ui/autofill/
H A Dcountry_combobox_model.h19 class AutofillCountry;
39 const std::vector<AutofillCountry*>& countries() const {
49 ScopedVector<AutofillCountry> countries_;
H A Dcountry_combobox_model.cc41 countries_.push_back(new AutofillCountry(default_country_code, app_locale));
51 AutofillCountry::GetAvailableCountries(&available_countries);
68 std::vector<AutofillCountry*> sorted_countries;
72 sorted_countries.push_back(new AutofillCountry(*it, app_locale));
77 &AutofillCountry::name);
88 AutofillCountry* country = countries_[index];
H A Dcountry_combobox_model_unittest.cc42 AutofillCountry country(default_country,
H A Ddata_model_wrapper.cc394 return AutofillCountry(address_->region_code,
H A Dautofill_dialog_controller_impl.cc182 info = base::ASCIIToUTF16(AutofillCountry::GetCountryCode(
535 std::string region = AutofillCountry::GetCountryCode(
628 AutofillCountry(hardcoded_country_code, app_locale).name();
1343 GetValidator()->LoadRules(AutofillCountry::GetCountryCode(
3329 const std::vector<AutofillCountry*>& countries = model->countries();
3489 return AutofillCountry::GetCountryCode(
3501 std::string country_code = AutofillCountry::GetCountryCode(
3520 GetValidator()->LoadRules(AutofillCountry::GetCountryCode(
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_address.cc360 AutofillCountry country(country_name_code(), app_locale);
/external/chromium_org/chrome/browser/autofill/android/
H A Dpersonal_data_manager_android.cc334 AutofillCountry::GetCountryCode(
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dautofill_options_handler.cc37 using autofill::AutofillCountry;
159 const std::vector<AutofillCountry*>& countries = model.countries();
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_profile_syncable_service.cc367 AutofillCountry::GetCountryCode(country_name_or_code, app_locale);
H A Dautofill_table.cc2013 update_s.BindString(0, AutofillCountry::GetCountryCode(country,

Completed in 1851 milliseconds