Home | History | Annotate | Download | only in autofill

Lines Matching full:abbreviation

25   const char* abbreviation;
29 static string16 Abbreviation(const string16& name);
30 static string16 FullName(const string16& abbreviation);
89 string16 State::Abbreviation(const string16& name) {
92 return ASCIIToUTF16(s->abbreviation);
96 string16 State::FullName(const string16& abbreviation) {
98 if (LowerCaseEqualsASCII(abbreviation, s->abbreviation))
145 abbrev = State::Abbreviation(value);
149 // Try the abbreviation name first.
242 return !State::Abbreviation(value).empty() || !State::FullName(value).empty();