Home | History | Annotate | Download | only in profiler

Lines Matching refs:ms_

15 Duration::Duration() : ms_(0) {}
16 Duration::Duration(int32_t duration) : ms_(duration) {}
19 ms_ += other.ms_;
24 return Duration(ms_ + other.ms_);
28 return ms_ == other.ms_;
32 return ms_ != other.ms_;
36 return ms_ > other.ms_;
43 return ms_;
48 TrackedTime::TrackedTime() : ms_(0) {}
49 TrackedTime::TrackedTime(int32_t ms) : ms_(ms) {}
51 : ms_(static_cast<int32_t>((time - base::TimeTicks()).InMilliseconds())) {}
59 return Duration(ms_ - other.ms_);
63 return TrackedTime(ms_ + other.ms_);
66 bool TrackedTime::is_null() const { return ms_ == 0; }