OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsCityCode
(Results
1 - 3
of
3
) sorted by null
/external/chromium/chrome/browser/autofill/
phone_number_unittest.cc
108
EXPECT_FALSE(phone_number.
IsCityCode
(ASCIIToUTF16("")));
109
EXPECT_FALSE(phone_number.
IsCityCode
(ASCIIToUTF16("1")));
110
EXPECT_FALSE(phone_number.
IsCityCode
(ASCIIToUTF16("12")));
111
EXPECT_TRUE(phone_number.
IsCityCode
(ASCIIToUTF16("123")));
112
EXPECT_FALSE(phone_number.
IsCityCode
(ASCIIToUTF16("1234")));
phone_number.h
79
bool
IsCityCode
(const string16& text) const;
phone_number.cc
63
if (
IsCityCode
(stripped_text))
216
bool PhoneNumber::
IsCityCode
(const string16& text) const {
Completed in 36 milliseconds