Lines Matching full:const
20 int Compare(const Configuration& that) const;
22 inline bool operator<(const Configuration& that) const { return Compare(that) < 0; }
23 inline bool operator<=(const Configuration& that) const { return Compare(that) <= 0; }
24 inline bool operator==(const Configuration& that) const { return Compare(that) == 0; }
25 inline bool operator!=(const Configuration& that) const { return Compare(that) != 0; }
26 inline bool operator>=(const Configuration& that) const { return Compare(that) >= 0; }
27 inline bool operator>(const Configuration& that) const { return Compare(that) > 0; }
30 bool ParseDiectoryName(const string& dir, string* resType);
32 string ToString() const;
35 bool split_locale(const string& in, string* language, string* region);