Lines Matching refs:mLow
680 Range(T lo, T hi) : mLow(lo), mHigh(hi) {} in Range()
682 T length() const { return (empty() ? 0 : (mHigh - mLow)); } in length()
686 if (mLow <= other.mLow) in intersects()
688 return other.mLow < mHigh; in intersects()
692 return mLow < other.mHigh; in intersects()
699 mLow = value < mLow ? value : mLow; in extend()
703 bool empty() const { return mHigh <= mLow; } in empty()
705 bool contains(T value) const { return value >= mLow && value < mHigh; } in contains()
725 Iterator begin() const { return Iterator(mLow); } in begin()
729 T low() const { return mLow; } in low()
734 mLow = std::numeric_limits<T>::max(); in invalidate()
739 T mLow;