Lines Matching refs:us_
304 return us_ == 0; in is_null()
308 bool is_max() const { return us_ == std::numeric_limits<int64_t>::max(); } in is_max()
313 int64_t ToInternalValue() const { return us_; } in ToInternalValue()
316 us_ = other.us_;
322 return TimeDelta::FromMicroseconds(us_ - other.us_);
327 return TimeClass(time_internal::SaturatedAdd(delta, us_));
330 return TimeClass(-time_internal::SaturatedSub(delta, us_));
343 return us_ == other.us_;
346 return us_ != other.us_;
349 return us_ < other.us_;
352 return us_ <= other.us_;
355 return us_ > other.us_;
358 return us_ >= other.us_;
368 explicit TimeBase(int64_t us) : us_(us) {} in TimeBase()
371 int64_t us_; variable