Lines Matching defs:const
91 uint32_t GetValue(void) const { return mValue; } in GetValue()
112 uint32_t operator-(const Time &aOther) const { return mValue - aOther.mValue; } in operator -() argument
121 Time operator+(uint32_t aDuration) const { return Time(mValue + aDuration); } in operator +()
130 Time operator-(uint32_t aDuration) const { return Time(mValue - aDuration); } in operator -()
154 bool operator==(const Time &aOther) const { return mValue == aOther.mValue; } in operator ==() argument
170 bool operator<(const Time &aOther) const { return SerialNumber::IsLess(mValue, aOther.mValue); } in operator <() argument
180 bool operator>=(const Time &aOther) const { return !(*this < aOther); } in operator >=() argument
190 bool operator<=(const Time &aOther) const { return (aOther >= *this); } in operator <=() argument
200 bool operator>(const Time &aOther) const { return (aOther < *this); } in operator >() argument
212 Time GetDistantFuture(void) const { return Time(mValue + kDistantInterval); } in GetDistantFuture()
224 Time GetDistantPast(void) const { return Time(mValue - kDistantInterval); } in GetDistantPast()