Lines Matching full:state
22 class State {
27 static const State all_states[];
33 const State State::all_states[] = {
89 string16 State::Abbreviation(const string16& name) {
90 for (const State *s = all_states ; s->name ; ++s)
96 string16 State::FullName(const string16& abbreviation) {
97 for (const State *s = all_states ; s->name ; ++s)
143 full = State::FullName(value);
145 abbrev = State::Abbreviation(value);
242 return !State::Abbreviation(value).empty() || !State::FullName(value).empty();