HomeSort by relevance Sort by last modified time
    Searched defs:city_code (Results 1 - 3 of 3) sorted by null

  /external/chromium/chrome/browser/autofill/
phone_number_unittest.cc 13 string16 city_code; local
18 PhoneNumber::ParsePhoneNumber(phone0, &number, &city_code, &country_code);
20 EXPECT_EQ(string16(), city_code); local
25 PhoneNumber::ParsePhoneNumber(phone1, &number, &city_code, &country_code);
27 EXPECT_EQ(string16(), city_code); local
32 PhoneNumber::ParsePhoneNumber(phone2, &number, &city_code, &country_code);
34 EXPECT_EQ(string16(), city_code); local
41 &number, &city_code, &country_code);
43 EXPECT_EQ(string16(), city_code); local
49 PhoneNumber::ParsePhoneNumber(phone3, &number, &city_code, &country_code)
51 EXPECT_EQ(string16(), city_code); local
60 EXPECT_EQ(string16(), city_code); local
    [all...]
phone_number.h 33 // returns the trailing 7 digits, |city_code| returns the next 3 digits, and
39 string16* city_code,
60 const string16& city_code() const { return city_code_; } function in class:PhoneNumber
71 void set_city_code(const string16& city_code) { city_code_ = city_code; }
phone_number.cc 82 if (!city_code().empty())
100 return city_code();
137 string16* city_code,
140 DCHECK(city_code);
147 *city_code = string16();
164 *city_code = working.substr(working.size() - kPhoneCityCodeLength,
196 string16 number, city_code, country_code; local
197 ParsePhoneNumber(whole_number, &number, &city_code, &country_code);
199 set_city_code(city_code);

Completed in 36 milliseconds