Home | History | Annotate | Download | only in profiler

Lines Matching full:duration

20 // of duration between those values.  This means we can only handle durations
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 duration);
55 Duration operator-(const TrackedTime& other) const;
56 TrackedTime operator+(const Duration& other) const;
62 friend class Duration;
65 // Internal duration is stored directly in milliseconds.