Home | History | Annotate | Download | only in profiler

Lines Matching refs:other

18 Duration& Duration::operator+=(const Duration& other) {
19 ms_ += other.ms_;
23 Duration Duration::operator+(const Duration& other) const {
24 return Duration(ms_ + other.ms_);
27 bool Duration::operator==(const Duration& other) const {
28 return ms_ == other.ms_;
31 bool Duration::operator!=(const Duration& other) const {
32 return ms_ != other.ms_;
35 bool Duration::operator>(const Duration& other) const {
36 return ms_ > other.ms_;
58 Duration TrackedTime::operator-(const TrackedTime& other) const {
59 return Duration(ms_ - other.ms_);
62 TrackedTime TrackedTime::operator+(const Duration& other) const {
63 return TrackedTime(ms_ + other.ms_);