Lines Matching refs:WeeklyTime
27 class WeeklyTime {
30 WeeklyTime(const int& day_of_week, const base::TimeDelta& time) in WeeklyTime() function
34 static WeeklyTime FromTime(const base::Time& time);
36 bool operator==(const WeeklyTime& other) const {
40 bool operator!=(const WeeklyTime& other) const { return !(*this == other); }
45 base::TimeDelta GetDurationTo(const WeeklyTime& other) const;
70 WeeklyTimeInterval(const WeeklyTime& start, const WeeklyTime& end) in WeeklyTimeInterval()
74 bool InRange(const WeeklyTime& time) const;
76 WeeklyTime start() const { return start_; } in start()
78 WeeklyTime end() const { return end_; } in end()
89 WeeklyTime start_;
90 WeeklyTime end_;