Home | History | Annotate | Download | only in base

Lines Matching refs:string

8 #include <string>
29 explicit Version(const std::string& version_str);
34 // Returns true if the version wildcard string is valid. The version wildcard
35 // string may end with ".*" (e.g. 1.2.*, 1.*). Any other arrangement with "*"
38 static bool IsValidWildcardString(const std::string& wildcard_string);
42 // string represents valid version and if the version is greater than
44 bool IsOlderThan(const std::string& version_str) const;
52 // newer version. This function will default to CompareTo if the string does
55 int CompareToWildcardString(const std::string& wildcard_string) const;
57 // Return the string representation of this version.
58 const std::string GetString() const;