Lines Matching refs:ticks_
455 TimeTicks() : ticks_(0) { in TimeTicks()
480 return ticks_ == 0; in is_null()
485 return ticks_; in ToInternalValue()
489 ticks_ = other.ticks_;
495 return TimeDelta(ticks_ - other.ticks_);
500 ticks_ += delta.delta_;
504 ticks_ -= delta.delta_;
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) { in TimeTicks()
546 int64 ticks_; variable
555 return TimeTicks(t.ticks_ + delta_);