HomeSort by relevance Sort by last modified time
    Searched defs:country_code (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/base/i18n/
timezone_unittest.cc 13 std::string country_code = CountryCodeForCurrentTimezone(); local
16 if (!country_code.empty())
17 EXPECT_EQ(2U, country_code.size());
timezone.cc 38 std::string country_code; member in struct:base::__anon6888::TimezoneMap::OlsonCodeData
463 map_[olson_code_data[i].olson_code] = olson_code_data[i].country_code;
  /external/chromium_org/chrome/browser/ui/autofill/
country_combobox_model_unittest.cc 51 std::string country_code = model()->countries()[i]->country_code(); local
54 country_code, std::string(), NULL);
  /external/chromium_org/components/autofill/core/browser/
address.cc 206 std::string country_code = AutofillCountry::GetCountryCode(text, app_locale); local
207 if (!country_code.empty() && country_code_ == country_code)
phone_number_i18n_unittest.cc 56 std::string country_code; member in struct:autofill::test_case
118 base::string16 country_code, city_code, number; local
124 &country_code,
131 EXPECT_EQ(ASCIIToUTF16(test_cases[i].country_code), country_code); local
phone_number_i18n.h 39 base::string16* country_code,
52 // |country_code| - country code, could be empty.
58 bool ConstructPhoneNumber(const base::string16& country_code,
82 const base::string16& country_code() const { return country_code_; } function in class:autofill::i18n::PhoneObject
autofill_country.h 46 // |country_code|.
47 AutofillCountry(const std::string& country_code, const std::string& locale);
64 const std::string country_code() const { return country_code_; } function in class:autofill::AutofillCountry
85 AutofillCountry(const std::string& country_code,
phone_number.cc 26 base::string16 country_code = profile.GetRawInfo(ADDRESS_HOME_COUNTRY); local
27 if (!country_code.empty())
28 return base::UTF16ToASCII(country_code);
117 return cached_parsed_phone_.country_code();
phone_number_i18n.cc 51 // to calling this function. Note that the |country_code|, which determines
56 const base::string16& country_code,
60 country_code.empty() ?
86 base::string16* country_code,
91 country_code->clear();
134 *country_code = base::string16();
142 *country_code = base::UTF8ToUTF16(
143 base::StringPrintf("%d", i18n_number->country_code()));
145 !StartsWith(normalized_number, *country_code,
147 country_code->clear()
160 base::string16 country_code, unused_city_code, unused_number; local
    [all...]
autofill_country.cc 42 char country_code[3]; member in struct:autofill::__anon10813::StaticCountryData
814 std::string country_code = *country_pointer; local
906 const std::string& country_code = it->first; local
960 const std::string& country_code = it->first; local
1086 std::string country_code = icu::Locale(likely_locale.c_str()).getCountry(); local
    [all...]
autofill_field.cc 101 std::string country_code = AutofillCountry::GetCountryCode(value, app_locale); local
102 if (country_code.empty())
112 if (country_code == AutofillCountry::GetCountryCode(value, app_locale) ||
113 country_code == AutofillCountry::GetCountryCode(contents, app_locale)) {
autofill_profile.cc 195 const std::string& country_code,
198 country_code_(country_code),
729 std::string country_code = local
732 FindByPhone(phone, country_code, app_locale)) ==
personal_data_manager.cc 91 std::string country_code =
93 if (country_code.empty())
94 country_code = AutofillCountry::CountryCodeForLocale(app_locale);
96 AutofillCountry country(country_code, app_locale);
770 bool PersonalDataManager::IsCountryOfInterest(const std::string& country_code)
772 DCHECK_EQ(2U, country_code.size());
792 StringToLowerASCII(country_code)) != country_codes.end();
1060 std::string country_code = StringToUpperASCII(base::UTF16ToASCII( local
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
address_data.h 38 // address.country_code = "US";
43 // should appear on an envelope for |country_code|. The |lines| parameter
46 // If there're no address formatting rules for |country_code|, then the
71 std::string country_code; member in struct:i18n::addressinput::AddressData
  /external/chromium_org/components/google/core/browser/
google_util.cc 117 std::string country_code = google_hostname.substr(last_dot + 1); local
119 if (country_code == "com")
123 if (country_code == "uk")
127 if (country_code == "cat")
129 return country_code;
  /external/chromium_org/chrome/browser/spellchecker/
spelling_service_client.cc 63 std::string country_code; local
67 &country_code);
89 country_code.c_str(),
spellcheck_service.cc 45 std::string country_code; local
49 &country_code);
51 context->GetRequestContext(), language_code, country_code));
295 std::string country_code; local
297 dictionary, &language_code, &country_code);
298 feedback_sender_->OnLanguageCountryChange(language_code, country_code);
  /external/chromium_org/chrome/renderer/net/
net_error_helper_core.h 110 std::string country_code; member in struct:NetErrorHelperCore::NavigationCorrectionParams
156 const std::string& country_code,
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc 190 std::string country_code; local
191 if (!dictionary.GetString("country_code", &country_code)) {
255 new Address(country_code,
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_profile_syncable_service.cc 366 std::string country_code = local
368 diff = UpdateField(ADDRESS_HOME_COUNTRY, country_code, profile) || diff;
  /external/chromium_org/components/webdata/common/
web_database_migration_unittest.cc 1372 std::string country_code = s.ColumnString(0); local
1397 std::string country_code = s.ColumnString(0); local
1423 std::string country_code = s.ColumnString(0); local
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_handler.cc 62 // input an address for |country_code| when UI BCP 47 language code is
66 void GetAddressComponents(const std::string& country_code,
74 country_code, ui_language_code, components_language_code);
150 countries.front()->country_code());
160 countries[i] ? countries[i]->country_code() : "separator");
167 GetAddressComponents(countries.front()->country_code(),
208 // Pulls the phone number |index|, |phone_number_list|, and |country_code| from
213 std::string* country_code) {
228 if (!args->GetString(2, country_code)) {
239 const std::string& country_code,
269 std::string country_code; local
522 std::string country_code; local
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
asyoutypeformatter.cc 606 return (current_metadata_->country_code() == 1) &&
685 int country_code = local
687 if (country_code == 0) {
692 phone_util_.GetRegionCodeForCountryCode(country_code, &new_region_code);
695 phone_util_.GetMetadataForNonGeographicalRegion(country_code);
699 StrAppend(&prefix_before_national_number_, country_code);
  /external/chromium_org/components/test/data/web_database/
version_35.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
version_37.sql 15 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);

Completed in 999 milliseconds

1 2 3