Home | History | Annotate | Download | only in localize

Lines Matching full:const

19     StringResource(const SourcePos& pos, const string& file, const Configuration& config, 
20 const string& id, int index, XMLNode* value,
21 int version, const string& versionString, const string& comment = "");
22 StringResource(const StringResource& that);
25 int Compare(const StringResource& that) const;
27 inline bool operator<(const StringResource& that) const { return Compare(that) < 0; }
28 inline bool operator<=(const StringResource& that) const { return Compare(that) <= 0; }
29 inline bool operator==(const StringResource& that) const { return Compare(that) == 0; }
30 inline bool operator!=(const StringResource& that) const { return Compare(that) != 0; }
31 inline bool operator>=(const StringResource& that) const { return Compare(that) >= 0; }
32 inline bool operator>(const StringResource& that) const { return Compare(that) > 0; }
34 string TypedID() const;
35 static bool ParseTypedID(const string& typed, string* id, int* index);