Lines Matching refs:sys_time

291   using sys_time  = time_point<system_clock, Duration>; // C++20
292 using sys_seconds = sys_time<seconds>; // C++20
293 using sys_days = sys_time<days>; // C++20
297 operator<<(basic_ostream<charT, traits>& os, const sys_time<Duration>& tp);
315 static sys_time<see-below> to_sys(const file_time<Duration>&);
318 static file_time<see-below> from_sys(const sys_time<Duration>&);
769 sys_info get_info(const sys_time<Duration>& st) const;
775 sys_time<common_type_t<Duration, seconds>>
779 sys_time<common_type_t<Duration, seconds>>
784 to_local(const sys_time<Duration>& tp) const;
823 constexpr bool operator==(const leap_second& x, const sys_time<Duration>& y);
825 constexpr bool operator< (const leap_second& x, const sys_time<Duration>& y);
827 constexpr bool operator< (const sys_time<Duration>& x, const leap_second& y);
829 constexpr bool operator> (const leap_second& x, const sys_time<Duration>& y);
831 constexpr bool operator> (const sys_time<Duration>& x, const leap_second& y);
833 constexpr bool operator<=(const leap_second& x, const sys_time<Duration>& y);
835 constexpr bool operator<=(const sys_time<Duration>& x, const leap_second& y);
837 constexpr bool operator>=(const leap_second& x, const sys_time<Duration>& y);
839 constexpr bool operator>=(const sys_time<Duration>& x, const leap_second& y);
841 requires three_way_comparable_with<sys_seconds, sys_time<Duration>>
842 constexpr auto operator<=>(const leap_second& x, const sys_time<Duration>& y);
863 struct formatter<chrono::sys_time<Duration>, charT>; // C++20