Home | History | Annotate | Download | only in time

Lines Matching refs:ticks_

576   TimeTicks() : ticks_(0) {
632 return ticks_ == 0;
654 return ticks_;
658 ticks_ = other.ticks_;
664 return TimeDelta(ticks_ - other.ticks_);
669 ticks_ += delta.delta_;
673 ticks_ -= delta.delta_;
679 return TimeTicks(ticks_ + delta.delta_);
682 return TimeTicks(ticks_ - delta.delta_);
687 return ticks_ == other.ticks_;
690 return ticks_ != other.ticks_;
693 return ticks_ < other.ticks_;
696 return ticks_ <= other.ticks_;
699 return ticks_ > other.ticks_;
702 return ticks_ >= other.ticks_;
710 explicit TimeTicks(int64 ticks) : ticks_(ticks) {
714 int64 ticks_;
723 return TimeTicks(t.ticks_ + delta_);