Home | History | Annotate | Download | only in thread.condition.condvar

Lines Matching refs:Clock

14 // template <class Clock, class Duration, class Predicate>
17 // const chrono::time_point<Clock, Duration>& abs_time,
26 struct Clock
31 typedef std::chrono::time_point<Clock> time_point;
66 Clock::time_point t0 = Clock::now();
67 Clock::time_point t = t0 + Clock::duration(250);
69 Clock::time_point t1 = Clock::now();
72 assert(t1 - t0 < Clock::duration(250));
78 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));