/external/chromium/chrome/browser/autofill/ |
autofill_country_unittest.cc | 47 TEST(AutofillCountryTest, GetCountryCode) { 49 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("United States"), 51 EXPECT_EQ("CA", AutofillCountry::GetCountryCode(ASCIIToUTF16("Canada"), 55 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("united states"), 59 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("US"), "en_US")); 60 EXPECT_EQ("HU", AutofillCountry::GetCountryCode(ASCIIToUTF16("hu"), "en_US")); 61 EXPECT_EQ("CA", AutofillCountry::GetCountryCode(ASCIIToUTF16("CA"), "fr_CA")); 62 EXPECT_EQ("MX", AutofillCountry::GetCountryCode(ASCIIToUTF16("mx"), "fr_CA")); 66 AutofillCountry::GetCountryCode( 68 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("USA") [all...] |
autofill_country.h | 35 static const std::string GetCountryCode(const string16& country,
|
address.cc | 185 country_code_ = AutofillCountry::GetCountryCode(country, app_locale); 206 std::string country_code = AutofillCountry::GetCountryCode(text, app_locale);
|
autofill_country.cc | 358 const std::string GetCountryCode(const string16& country, 439 const std::string CountryNames::GetCountryCode(const string16& country, 622 const std::string AutofillCountry::GetCountryCode(const string16& country, 624 return CountryNames::GetInstance()->GetCountryCode(country, locale);
|
select_control_handler.cc | 172 if (country_code == AutofillCountry::GetCountryCode(*iter, app_locale)) {
|
/external/chromium_org/components/autofill/core/browser/ |
autofill_country_unittest.cc | 49 TEST(AutofillCountryTest, GetCountryCode) { 51 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("United States"), 53 EXPECT_EQ("CA", AutofillCountry::GetCountryCode(ASCIIToUTF16("Canada"), 57 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("united states"), 61 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("US"), "en_US")); 62 EXPECT_EQ("HU", AutofillCountry::GetCountryCode(ASCIIToUTF16("hu"), "en_US")); 63 EXPECT_EQ("CA", AutofillCountry::GetCountryCode(ASCIIToUTF16("CA"), "fr_CA")); 64 EXPECT_EQ("MX", AutofillCountry::GetCountryCode(ASCIIToUTF16("mx"), "fr_CA")); 68 AutofillCountry::GetCountryCode( 70 EXPECT_EQ("US", AutofillCountry::GetCountryCode(ASCIIToUTF16("USA") [all...] |
autofill_country.h | 61 static const std::string GetCountryCode(const base::string16& country,
|
address.cc | 158 country_code_ = AutofillCountry::GetCountryCode(value, app_locale); 193 std::string country_code = AutofillCountry::GetCountryCode(text, app_locale);
|
autofill_field.cc | 100 std::string country_code = AutofillCountry::GetCountryCode(value, app_locale); 111 if (country_code == AutofillCountry::GetCountryCode(value, app_locale) || 112 country_code == AutofillCountry::GetCountryCode(contents, app_locale)) {
|
autofill_country.cc | [all...] |
/external/chromium_org/chrome/browser/autofill/android/ |
personal_data_manager_android.cc | 311 AutofillCountry::GetCountryCode(
|
/external/chromium_org/chrome/browser/webdata/ |
autofill_profile_syncable_service.cc | 349 std::string country_code = AutofillCountry::GetCountryCode(
|
/external/chromium/chrome/browser/webdata/ |
autofill_table.cc | [all...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table.cc | [all...] |
/external/chromium_org/chrome/browser/ui/autofill/ |
autofill_dialog_controller_impl.cc | [all...] |