Lines Matching defs:ticks_
529 TimeTicks() : ticks_(0) {
579 return ticks_ == 0;
593 return ticks_;
597 ticks_ = other.ticks_;
603 return TimeDelta(ticks_ - other.ticks_);
608 ticks_ += delta.delta_;
612 ticks_ -= delta.delta_;
618 return TimeTicks(ticks_ + delta.delta_);
621 return TimeTicks(ticks_ - delta.delta_);
626 return ticks_ == other.ticks_;
629 return ticks_ != other.ticks_;
632 return ticks_ < other.ticks_;
635 return ticks_ <= other.ticks_;
638 return ticks_ > other.ticks_;
641 return ticks_ >= other.ticks_;
649 explicit TimeTicks(int64 ticks) : ticks_(ticks) {
653 int64 ticks_;
662 return TimeTicks(t.ticks_ + delta_);