/external/chromium_org/components/autofill/core/browser/ |
D | phone_number_i18n_unittest.cc | 48 base::string16 city_code; in TEST() local 56 &city_code, in TEST() 60 EXPECT_EQ(base::string16(), city_code); in TEST() 67 &city_code, in TEST() 71 EXPECT_EQ(base::string16(), city_code); in TEST() 79 &city_code, in TEST() 83 EXPECT_EQ(base::string16(), city_code); in TEST() 90 &city_code, in TEST() 94 EXPECT_EQ(base::string16(), city_code); in TEST() 102 &city_code, in TEST() [all …]
|
D | phone_number_i18n.h | 37 base::string16* city_code, 55 const base::string16& city_code, 79 const base::string16& city_code() const { return city_code_; } in city_code() function
|
D | phone_number_i18n.cc | 87 base::string16* city_code, in ParsePhoneNumber() argument 91 city_code->clear(); in ParsePhoneNumber() 132 *city_code = UTF8ToUTF16(area_code); in ParsePhoneNumber() 171 const base::string16& city_code, in ConstructPhoneNumber() argument 182 if (!ParsePhoneNumber(country_code + city_code + number, region, in ConstructPhoneNumber()
|
D | phone_number.cc | 120 return cached_parsed_phone_.city_code(); in GetInfo() 127 cached_parsed_phone_.city_code() + cached_parsed_phone_.number(); in GetInfo()
|
/external/chromium/chrome/browser/autofill/ |
D | phone_number_unittest.cc | 13 string16 city_code; in TEST() local 18 PhoneNumber::ParsePhoneNumber(phone0, &number, &city_code, &country_code); in TEST() 20 EXPECT_EQ(string16(), city_code); in TEST() 25 PhoneNumber::ParsePhoneNumber(phone1, &number, &city_code, &country_code); in TEST() 27 EXPECT_EQ(string16(), city_code); in TEST() 32 PhoneNumber::ParsePhoneNumber(phone2, &number, &city_code, &country_code); in TEST() 34 EXPECT_EQ(string16(), city_code); in TEST() 41 &number, &city_code, &country_code); in TEST() 43 EXPECT_EQ(string16(), city_code); in TEST() 49 PhoneNumber::ParsePhoneNumber(phone3, &number, &city_code, &country_code); in TEST() [all …]
|
D | phone_number.cc | 82 if (!city_code().empty()) in GetAvailableFieldTypes() 100 return city_code(); in GetInfo() 137 string16* city_code, in ParsePhoneNumber() argument 140 DCHECK(city_code); in ParsePhoneNumber() 147 *city_code = string16(); in ParsePhoneNumber() 164 *city_code = working.substr(working.size() - kPhoneCityCodeLength, in ParsePhoneNumber() 196 string16 number, city_code, country_code; in set_whole_number() local 197 ParsePhoneNumber(whole_number, &number, &city_code, &country_code); in set_whole_number() 199 set_city_code(city_code); in set_whole_number()
|
D | phone_number.h | 39 string16* city_code, 60 const string16& city_code() const { return city_code_; } in city_code() function 71 void set_city_code(const string16& city_code) { city_code_ = city_code; } in set_city_code() argument
|
D | personal_data_manager_mac.mm | 193 string16 city_code; 206 homePhone, &number, &city_code, &country_code); 208 profile->SetInfo(PHONE_HOME_CITY_CODE, city_code); 215 &number, &city_code, &country_code); 217 profile->SetInfo(PHONE_FAX_CITY_CODE, city_code); 224 &number, &city_code, &country_code); 226 profile->SetInfo(PHONE_HOME_CITY_CODE, city_code); 233 &number, &city_code, &country_code); 235 profile->SetInfo(PHONE_FAX_CITY_CODE, city_code);
|
D | personal_data_manager.cc | 262 string16 city_code; in ImportFormData() 266 &city_code, in ImportFormData() 273 imported_profile->SetInfo(PHONE_HOME_CITY_CODE, city_code); in ImportFormData() 277 imported_profile->SetInfo(PHONE_FAX_CITY_CODE, city_code); in ImportFormData()
|