Home | History | Annotate | Download | only in vintf

Lines Matching refs:version

4  * Licensed under the Apache License, Version 2.0 (the "License");
29 VendorNdk(std::string&& version) : mVersion(std::move(version)) {}
30 VendorNdk(std::string&& version, std::set<std::string>&& libs)
31 : mVersion(std::move(version)), mLibraries(std::move(libs)) {}
32 VendorNdk(const std::string& version) : mVersion(version) {}
33 VendorNdk(const std::string& version, const std::set<std::string>& libs)
34 : mVersion(version), mLibraries(libs) {}
35 bool operator==(const VendorNdk& other) const { return version() == other.version(); }
36 const std::string& version() const { return mVersion; }