Lines Matching defs:ticks_
455 TimeTicks() : ticks_(0) {
480 return ticks_ == 0;
485 return ticks_;
489 ticks_ = other.ticks_;
495 return TimeDelta(ticks_ - other.ticks_);
500 ticks_ += delta.delta_;
504 ticks_
510 return TimeTicks(ticks_ + delta.delta_);
513 return TimeTicks(ticks_ - delta.delta_);
518 return ticks_ == other.ticks_;
521 return ticks_ != other.ticks_;
524 return ticks_ < other.ticks_;
527 return ticks_ <= other.ticks_;
530 return ticks_ > other.ticks_;
533 return ticks_ >= other.ticks_;
542 explicit TimeTicks(int64 ticks) : ticks_(ticks) {
546 int64 ticks_;
555 return TimeTicks(t.ticks_ + delta_);