Home
last modified time | relevance | path

Searched refs:ms_ (Results 1 – 2 of 2) sorted by relevance

/external/libchrome/base/profiler/
Dtracked_time.cc15 Duration::Duration() : ms_(0) {} in Duration()
16 Duration::Duration(int32_t duration) : ms_(duration) {} in Duration()
19 ms_ += other.ms_; in operator +=()
24 return Duration(ms_ + other.ms_); in operator +()
28 return ms_ == other.ms_; in operator ==()
32 return ms_ != other.ms_; in operator !=()
36 return ms_ > other.ms_; in operator >()
43 return ms_; in InMilliseconds()
48 TrackedTime::TrackedTime() : ms_(0) {} in TrackedTime()
49 TrackedTime::TrackedTime(int32_t ms) : ms_(ms) {} in TrackedTime()
[all …]
Dtracked_time.h46 int32_t ms_; variable
66 uint32_t ms_; variable