Home | History | Annotate | Download | only in time.point.nonmember

Lines Matching refs:time_point

12 // time_point
15 // time_point<Clock, typename common_type<Duration1, duration<Rep2, Period2>>::type>
16 // operator+(const time_point<Clock, Duration1>& lhs, const duration<Rep2, Period2>& rhs);
19 // time_point<Clock, typename common_type<duration<Rep1, Period1>, Duration2>::type>
20 // operator+(const duration<Rep1, Period1>& lhs, const time_point<Clock, Duration2>& rhs);
31 std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
32 std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5);
39 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
40 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5);
42 constexpr std::chrono::time_point<Clock, Duration2> t3 = Duration2(6) + t1;