Home | History | Annotate | Download | only in base

Lines Matching refs:Version

5 #include "base/version.h"
15 Version::Version() : is_valid_(false) {}
17 Version::~Version() {}
20 Version* Version::GetVersionFromString(const std::string& version_str) {
21 Version* vers = new Version();
30 Version* Version::Clone() const {
32 Version* copy = new Version();
38 bool Version::Equals(const Version& that) const {
44 int Version::CompareTo(const Version& other) const {
66 const std::string Version::GetString() const {
78 bool Version::InitFromString(const std::string& version_str) {