Searched refs:country_code (Results 1 - 20 of 20) sorted by relevance

/external/chromium/chrome/browser/autofill/
H A Dphone_number_unittest.cc14 string16 country_code; local
18 PhoneNumber::ParsePhoneNumber(phone0, &number, &city_code, &country_code);
21 EXPECT_EQ(string16(), country_code); local
25 PhoneNumber::ParsePhoneNumber(phone1, &number, &city_code, &country_code);
28 EXPECT_EQ(string16(), country_code); local
32 PhoneNumber::ParsePhoneNumber(phone2, &number, &city_code, &country_code);
35 EXPECT_EQ(string16(), country_code); local
41 &number, &city_code, &country_code);
44 EXPECT_EQ(string16(), country_code); local
49 PhoneNumber::ParsePhoneNumber(phone3, &number, &city_code, &country_code);
52 EXPECT_EQ(string16(), country_code); local
61 EXPECT_EQ(string16(), country_code); local
69 EXPECT_EQ(string16(), country_code); local
78 EXPECT_EQ(string16(), country_code); local
[all...]
H A Daddress_unittest.cc16 EXPECT_EQ(std::string(), address.country_code());
19 EXPECT_EQ("US", address.country_code());
22 EXPECT_EQ("CA", address.country_code());
28 EXPECT_EQ(std::string(), address.country_code());
46 EXPECT_EQ(std::string(), address.country_code());
51 EXPECT_EQ("US", address.country_code());
57 EXPECT_EQ("US", address.country_code());
63 EXPECT_EQ("CA", address.country_code());
69 EXPECT_EQ("JP", address.country_code());
75 EXPECT_EQ(std::string(), address.country_code());
[all...]
H A Dautofill_country.h20 // |country_code|.
21 AutofillCountry(const std::string& country_code, const std::string& locale);
41 const std::string country_code() const { return country_code_; } function in class:AutofillCountry
47 AutofillCountry(const std::string& country_code,
H A Dautofill_country_unittest.cc15 EXPECT_EQ("US", united_states_en.country_code());
21 EXPECT_EQ("US", united_states_es.country_code());
25 EXPECT_EQ("CA", canada_en.country_code());
31 EXPECT_EQ("CA", canada_hu.country_code());
H A Dphone_number.h34 // |country_code| returns any remaining digits.
40 string16* country_code);
59 const string16& country_code() const { return country_code_; } function in class:PhoneNumber
68 void set_country_code(const string16& country_code) { argument
69 country_code_ = country_code;
H A Dautofill_country.cc34 std::string country_code; member in struct:__anon1294::CountryData
297 static const Iterator Find(const std::string& country_code);
317 country_data_.insert(std::make_pair(data.country_code, data));
325 std::string country_code = *country_pointer; local
326 if (!country_data_.count(country_code)) {
328 country_code,
332 country_data_.insert(std::make_pair(country_code, data));
346 const std::string& country_code) {
347 return GetInstance()->country_data_.find(country_code);
418 const std::string& country_code local
345 Find( const std::string& country_code) argument
474 const std::string& country_code = it->first; local
559 GetDisplayName(const std::string& country_code, const icu::Locale& display_locale) argument
571 AutofillCountry(const std::string& country_code, const std::string& locale) argument
611 std::string country_code = icu::Locale(likely_locale.c_str()).getCountry(); local
636 AutofillCountry(const std::string& country_code, const string16& name, const string16& postal_code_label, const string16& state_label) argument
[all...]
H A Daddress.h33 const std::string& country_code() const { return country_code_; } function in class:Address
34 void set_country_code(const std::string& country_code) { argument
35 country_code_ = country_code;
H A Dphone_number.cc85 if (!country_code().empty())
103 return country_code();
138 string16* country_code) {
141 DCHECK(country_code);
148 *country_code = string16();
171 *country_code = working;
196 string16 number, city_code, country_code; local
197 ParsePhoneNumber(whole_number, &number, &city_code, &country_code);
200 set_country_code(country_code);
135 ParsePhoneNumber(const string16& value, string16* number, string16* city_code, string16* country_code) argument
H A Daddress.cc158 if (country_code().empty())
162 return AutofillCountry(country_code(), app_locale).name();
206 std::string country_code = AutofillCountry::GetCountryCode(text, app_locale); local
207 return (!country_code.empty() && country_code_ == country_code);
H A Dselect_control_handler.cc163 std::string country_code = profile.CountryCode(); local
172 if (country_code == AutofillCountry::GetCountryCode(*iter, app_locale)) {
H A Dautofill_profile.h73 void SetCountryCode(const std::string& country_code);
H A Dautofill_profile.cc309 return address_.country_code();
312 void AutofillProfile::SetCountryCode(const std::string& country_code) { argument
313 address_.set_country_code(country_code);
H A Dpersonal_data_manager.cc263 string16 country_code;
267 &country_code);
272 imported_profile->SetInfo(PHONE_HOME_COUNTRY_CODE, country_code);
276 imported_profile->SetInfo(PHONE_FAX_COUNTRY_CODE, country_code);
/external/bluetooth/bluez/audio/
H A Dtelephony-maemo5.c174 uint32_t country_code; member in struct:__anon377
184 .country_code = 0,
1242 uint32_t country_code,
1287 net.country_code != country_code) {
1290 resolve_operator_name(operator_code, country_code);
1292 net.country_code = country_code;
1303 dbus_uint32_t cell_id, operator_code, country_code; local
1310 DBUS_TYPE_UINT32, &country_code,
1239 update_registration_status(uint8_t status, uint16_t lac, uint32_t cell_id, uint32_t operator_code, uint32_t country_code, uint8_t network_type, uint8_t supported_services) argument
1630 dbus_uint32_t cell_id, operator_code, country_code; local
[all...]
/external/chromium/chrome/browser/ui/webui/options/
H A Dautofill_options_handler.cc87 country_data->Set(country.country_code(), details);
392 std::string country_code; local
409 if (args->GetString(8, &country_code))
410 profile.SetCountryCode(country_code);
/external/chromium/chrome/browser/webdata/
H A Dweb_database_migration_unittest.cc1264 "country_code"));
1292 "country_code"));
1296 "SELECT country_code FROM autofill_profiles"));
1299 std::string country_code = s.ColumnString(0); local
1300 EXPECT_EQ("US", country_code);
1316 "country_code"));
1318 // Check that the country_code value is the one we expect.
1320 connection.GetUniqueStatement("SELECT country_code "
1324 std::string country_code = s.ColumnString(0); local
1325 EXPECT_EQ("UK", country_code);
1355 std::string country_code = s.ColumnString(0); local
[all...]
H A Dautofill_table.cc79 std::string country_code = profile.CountryCode(); local
80 s->BindString(8, country_code);
895 " zipcode, country, country_code, date_modified)"
921 " zipcode, country, country_code, date_modified "
1037 " city=?, state=?, zipcode=?, country=?, country_code=?, "
1491 "country_code VARCHAR, "
2039 // Test the existence of the |country_code| column as an indication that
2044 if (!db_->DoesColumnExist("autofill_profiles", "country_code")) {
2046 "country_code VARCHAR")) {
2050 // Set all the |country_code| field
[all...]
/external/qemu/hw/
H A Dbt.h1234 uint8_t country_code; member in struct:__anon9542
H A Dbt-hci.c1251 .country_code = 0x00, /* North America & Europe^1 and Japan */
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 219 milliseconds