Home | History | Annotate | Download | only in platform

Lines Matching refs:ticks_

300   TimeTicks() : ticks_(0) {}
319 bool IsNull() const { return ticks_ == 0; }
327 return ticks_;
331 ticks_ = other.ticks_;
337 return TimeDelta::FromMicroseconds(ticks_ - other.ticks_);
342 ticks_ += delta.InMicroseconds();
346 ticks_ -= delta.InMicroseconds();
352 return TimeTicks(ticks_ + delta.InMicroseconds());
355 return TimeTicks(ticks_ - delta.InMicroseconds());
360 return ticks_ == other.ticks_;
363 return ticks_ != other.ticks_;
366 return ticks_ < other.ticks_;
369 return ticks_ <= other.ticks_;
372 return ticks_ > other.ticks_;
375 return ticks_ >= other.ticks_;
381 explicit TimeTicks(int64_t ticks) : ticks_(ticks) {}
384 int64_t ticks_;