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

  /external/chromium_org/components/autofill/core/browser/
autofill_country_unittest.cc 17 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::CountryCodeForLocale("es-419"))
    [all...]
autofill_country.h 43 class AutofillCountry {
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);
address.cc 148 return AutofillCountry(country_code_, app_locale).name();
171 country_code_ = AutofillCountry::GetCountryCode(value, app_locale);
206 std::string country_code = AutofillCountry::GetCountryCode(text, app_locale);
autofill_country.cc     [all...]
autofill_field.cc 101 std::string country_code = AutofillCountry::GetCountryCode(value, app_locale);
112 if (country_code == AutofillCountry::GetCountryCode(value, app_locale) ||
113 country_code == AutofillCountry::GetCountryCode(contents, app_locale)) {
personal_data_manager.cc 94 country_code = AutofillCountry::CountryCodeForLocale(app_locale);
96 AutofillCountry country(country_code, app_locale);
788 AutofillCountry::CountryCodeForLocale(app_locale())));
806 default_country_code_ = AutofillCountry::CountryCodeForLocale(app_locale());
    [all...]
phone_number.cc 30 return AutofillCountry::CountryCodeForLocale(app_locale);
phone_number_i18n.cc 28 return AutofillCountry::CountryCodeForLocale(app_locale);
  /external/chromium_org/chrome/browser/ui/autofill/
country_combobox_model.h 19 class AutofillCountry;
38 const std::vector<AutofillCountry*>& countries() const {
48 ScopedVector<AutofillCountry> countries_;
country_combobox_model.cc 32 countries_.push_back(new AutofillCountry(default_country_code, app_locale));
43 AutofillCountry::GetAvailableCountries(&available_countries);
46 std::vector<AutofillCountry*> sorted_countries;
50 sorted_countries.push_back(new AutofillCountry(*it, app_locale));
55 &AutofillCountry::name);
68 AutofillCountry* country = countries_[index];
country_combobox_model_unittest.cc 41 AutofillCountry country(default_country,
data_model_wrapper.cc 391 return AutofillCountry(address_->country_code,
autofill_dialog_controller_impl.cc 177 info = base::ASCIIToUTF16(AutofillCountry::GetCountryCode(
534 std::string region = AutofillCountry::GetCountryCode(
627 AutofillCountry(hardcoded_country_code, app_locale).name();
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_handler.cc 37 using autofill::AutofillCountry;
148 const std::vector<AutofillCountry*>& countries = model.countries();
  /external/chromium_org/chrome/browser/autofill/android/
personal_data_manager_android.cc 319 AutofillCountry::GetCountryCode(
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc 360 AutofillCountry country(country_name_code(), app_locale);
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_profile_syncable_service.cc 367 AutofillCountry::GetCountryCode(country_name_or_code, app_locale);
autofill_table.cc     [all...]

Completed in 162 milliseconds