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

1 2 3 4

  /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/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
load_rules_delegate.h 29 // Called when the validation rules for the |country_code| have been loaded.
30 // The validation rules include the generic rules for the |country_code| and
36 virtual void OnAddressValidationRulesLoaded(const std::string& country_code,
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
address_validator.h 50 // const std::string& country_code,
57 // address.country_code = "US";
97 // Loads the generic validation rules for |country_code| and specific rules
108 virtual void LoadRules(const std::string& country_code) = 0;
  /external/chromium_org/chrome/browser/ui/autofill/
mock_address_validator.h 15 MATCHER_P(CountryCodeMatcher, country_code, "Checks an AddressData's country") {
17 return arg.country_code == country_code;
25 MOCK_METHOD1(LoadRules, void(const std::string& country_code));
country_combobox_model_unittest.cc 51 std::string country_code = model()->countries()[i]->country_code(); local
54 country_code, std::string(), NULL);
autofill_dialog_i18n_input.h 31 // billing or shipping) in |country_code| (e.g. "US" or "CH").
41 const std::string& country_code,
  /external/chromium_org/third_party/cld/encodings/
lang_enc.h 194 // country_code. Otherwise, it returns false.
196 bool LangsFromCountryCode(const char* country_code,
211 // country_code. Otherwise, it returns false, and *enc is set to
214 bool EncFromCountryCode(const char* country_code, Encoding* enc);
  /external/chromium_org/components/autofill/core/browser/
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_unittest.cc 19 EXPECT_EQ("US", united_states_en.country_code());
25 EXPECT_EQ("US", united_states_es.country_code());
29 EXPECT_EQ("CA", canada_en.country_code());
35 EXPECT_EQ("CA", canada_hu.country_code());
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_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
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
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...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/test/
address_validator_test.cc 58 virtual void OnAddressValidationRulesLoaded(const std::string& country_code,
61 address_data.country_code = country_code;
75 address.country_code = region_codes[i];
84 address.country_code = "US";
97 address.country_code = "US";
165 address.country_code = "US";
214 address.country_code = "US";
232 address.country_code = "US";
239 address.country_code = "US"
    [all...]
address_data_test.cc 35 address.country_code = "US";
61 address.country_code = "AR";
87 address.country_code = "JP";
114 address.country_code = "JP";
141 address.country_code = "JP";
168 address.country_code = "JP";
195 address.country_code = "CI";
215 address.country_code = "CI";
  /external/chromium_org/third_party/libphonenumber/src/resources/
phonenumber.proto 30 required int32 country_code = 1;
70 // The source from which the country_code is derived. This is not set in the general parsing method,
73 // The country_code is derived based on a phone number with a leading "+", e.g. the French
77 // The country_code is derived based on a phone number with a leading IDD, e.g. the French
81 // The country_code is derived based on a phone number without a leading "+", e.g. the French
85 // The country_code is derived NOT based on the phone number itself, but from the defaultCountry
92 // The source from which the country_code is derived.
107 // country_code: 1
111 // country_code: 33
115 // country_code: 8
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
address_data.cc 38 return &address.country_code;
69 rule.ParseSerializedRule(RegionDataConstants::GetRegionData(country_code));
111 return field_value != NULL ? *field_value : country_code;
123 if (country_code.empty())
129 RegionDataConstants::GetRegionData(country_code))) {
address_validator.cc 219 virtual void LoadRules(const std::string& country_code) {
220 if (rules_.find(country_code) == rules_.end() &&
221 loading_rules_.find(country_code) == loading_rules_.end()) {
222 loading_rules_.insert(country_code);
224 country_code,
235 rules_.find(address.country_code);
244 RegionDataConstants::GetRegionData(address.country_code))) {
249 return loading_rules_.find(address.country_code) != loading_rules_.end()
324 rules_.find(user_input.country_code);
328 loading_rules_.find(user_input.country_code) != loading_rules_.end(
    [all...]
  /external/chromium_org/chrome/browser/search_engines/
template_url_prepopulate_data.h 33 // This must be called early only once. |country_code| is the country code at
35 void InitCountryCode(const std::string& country_code);
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumber.cc 26 first_number.country_code() != second_number.country_code()) {
  /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/common/
spellcheck_common.cc 156 std::string* country_code) {
158 DCHECK(country_code);
170 *country_code = std::string(country);
spellcheck_common.h 60 std::string* country_code);

Completed in 346 milliseconds

1 2 3 4