Lines Matching refs:Duration
26 class BASE_EXPORT Duration { // Similar to base::TimeDelta.
28 Duration();
30 Duration& operator+=(const Duration& other);
31 Duration operator+(const Duration& other) const;
33 bool operator==(const Duration& other) const;
34 bool operator!=(const Duration& other) const;
35 bool operator>(const Duration& other) const;
37 static Duration FromMilliseconds(int ms);
43 explicit Duration(int32_t duration);
55 Duration operator-(const TrackedTime& other) const;
56 TrackedTime operator+(const Duration& other) const;
62 friend class Duration;