Home | History | Annotate | Download | only in base

Lines Matching refs:ticks_

409   TimeTicks() : ticks_(0) {
425 return ticks_ == 0;
430 return ticks_;
434 ticks_ = other.ticks_;
440 return TimeDelta(ticks_ - other.ticks_);
445 ticks_ += delta.delta_;
449 ticks_ -= delta.delta_;
455 return TimeTicks(ticks_ + delta.delta_);
458 return TimeTicks(ticks_ - delta.delta_);
463 return ticks_ == other.ticks_;
466 return ticks_ != other.ticks_;
469 return ticks_ < other.ticks_;
472 return ticks_ <= other.ticks_;
475 return ticks_ > other.ticks_;
478 return ticks_ >= other.ticks_;
487 explicit TimeTicks(int64 ticks) : ticks_(ticks) {
491 int64 ticks_;
500 return TimeTicks(t.ticks_ + delta_);