Home | History | Annotate | Download | only in time

Lines Matching refs:ticks_

587   TimeTicks() : ticks_(0) {
651 return ticks_ == 0;
673 return ticks_;
677 ticks_ = other.ticks_;
683 return TimeDelta(ticks_ - other.ticks_);
688 ticks_ += delta.delta_;
692 ticks_ -= delta.delta_;
698 return TimeTicks(ticks_ + delta.delta_);
701 return TimeTicks(ticks_ - delta.delta_);
706 return ticks_ == other.ticks_;
709 return ticks_ != other.ticks_;
712 return ticks_ < other.ticks_;
715 return ticks_ <= other.ticks_;
718 return ticks_ > other.ticks_;
721 return ticks_ >= other.ticks_;
729 explicit TimeTicks(int64 ticks) : ticks_(ticks) {
733 int64 ticks_;
742 return TimeTicks(t.ticks_ + delta_);