Home
last modified time | relevance | path

Searched refs:city_code_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/autofill/
Dphone_number.h60 const string16& city_code() const { return city_code_; } in city_code()
63 string16 CityAndNumber() const { return city_code_ + number_; } in CityAndNumber()
71 void set_city_code(const string16& city_code) { city_code_ = city_code; } in set_city_code()
92 string16 city_code_; // city or area code. variable
Dphone_number.cc47 city_code_ = number.city_code_; in operator =()
180 if (!city_code_.empty()) in WholeNumber()
181 whole_number.append(city_code_); in WholeNumber()
217 return text == city_code_; in IsCityCode()
/external/chromium_org/components/autofill/core/browser/
Dphone_number_i18n.h79 const base::string16& city_code() const { return city_code_; } in city_code()
97 base::string16 city_code_; variable
Dphone_number_i18n.cc240 if (ParsePhoneNumber(number, region_, &country_code_, &city_code_, &number_, in PhoneObject()
296 city_code_ = other.city_code_; in operator =()