Searched refs:mMajor (Results 1 – 3 of 3) sorted by relevance
88 mMajor(other.mMajor), in FQName()185 return std::to_string(mMajor) + "." + std::to_string(mMinor); in version()192 return "V" + std::to_string(mMajor) + "_" + std::to_string(mMinor); in sanitizedVersion()216 mMajor = mMinor = 0; in clearVersion()221 ::android::base::ParseUint(majorStr, &mMajor) && in parseVersion()449 return mMajor > 0; in hasVersion()455 return mMajor; in getPackageMajorVersion()
802 constexpr hidl_version(uint16_t major, uint16_t minor) : mMajor(major), mMinor(minor) {807 return (mMajor == other.get_major() && mMinor == other.get_minor());811 return (mMajor < other.get_major() ||812 (mMajor == other.get_major() && mMinor < other.get_minor()));827 constexpr uint16_t get_major() const { return mMajor; }831 uint16_t mMajor;
218 size_t mMajor = 0; member