/external/chromium/chrome/browser/autofill/ |
select_control_handler.cc | 163 std::string country_code = profile.CountryCode(); local 172 if (country_code == AutofillCountry::GetCountryCode(*iter, app_locale)) {
|
personal_data_manager.cc | 263 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/chromium_org/components/webdata/common/ |
web_database_migration_unittest.cc | 809 " country_code, date_modified 1189 std::string country_code = s.ColumnString(0); local 1214 std::string country_code = s.ColumnString(0); local 1240 std::string country_code = s.ColumnString(0); local [all...] |
/external/chromium_org/components/autofill/content/browser/wallet/ |
wallet_address_unittest.cc | 128 " \"country_code\":\"US\"" 139 " \"country_code\":\"US\"" 151 " \"country_code\":\"US\","
|
/external/chromium/chrome/browser/ui/webui/options/ |
autofill_options_handler.cc | 87 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_org/components/autofill/core/browser/ |
autofill_field.cc | 100 std::string country_code = AutofillCountry::GetCountryCode(value, app_locale); local 101 if (country_code.empty()) 111 if (country_code == AutofillCountry::GetCountryCode(value, app_locale) || 112 country_code == AutofillCountry::GetCountryCode(contents, 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); 1006 std::string country_code = StringToUpperASCII(UTF16ToASCII( local [all...] |
autofill_profile.cc | 190 const std::string& country_code, 193 country_code_(country_code), 650 std::string country_code = UTF16ToASCII(GetRawInfo(ADDRESS_HOME_COUNTRY)); local 652 FindByPhone(phone, country_code, app_locale)) ==
|
/external/chromium_org/components/test/data/web_database/ |
version_40.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_41.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_42.sql | 18 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_43.sql | 19 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_49.sql | 11 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_50.sql | 11 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, origin VARCHAR DEFAULT '');
|
version_34.sql | 37 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, date_modified INTEGER NOT NULL DEFAULT 0, country_code VARCHAR);
|
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_52.sql | 22 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, origin VARCHAR DEFAULT '');
|
/external/chromium_org/ui/base/l10n/ |
l10n_util.h | 63 // Returns the display name of the |country_code| in |display_locale|. 65 const std::string& country_code,
|
/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);
|
phonenumbermatcher.cc | 142 util.GetRegionCodeForCountryCode(phone_number.country_code(), ®ion); 339 make_pair(it->country_code(), &*it)); 678 phone_number.country_code()); 739 number.country_code(), &phone_number_region); [all...] |
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_table.cc | 969 " zipcode, sorting_code, country_code, date_modified, origin)" 985 " state, zipcode, sorting_code, country_code, date_modified, origin " [all...] |
/external/chromium/chrome/browser/webdata/ |
autofill_table.cc | 79 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=?, " [all...] |
/external/chromium_org/chrome/test/functional/webdriver_pages/ |
settings.py | 205 postal_code=None, country_code=None, phones=None): 222 country_code: Country code (e.g., US or FR). 243 if country_code is not None: 245 './/*[@id="country"]/*[@value="%s"]' % country_code).click()
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/ |
phonenumber_offline_geocoder.cc | 187 const int country_calling_code = number.country_code();
|
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/ |
Phonenumber.java | 42 // required int32 country_code = 1;
|