Lines Matching refs:chrono

16     chrono synopsis
22 namespace chrono
144 } // chrono
148 struct common_type<chrono::duration<Rep1, Period1>, chrono::duration<Rep2, Period2>>;
151 struct common_type<chrono::time_point<Clock, Duration1>, chrono::time_point<Clock, Duration2>>;
153 namespace chrono {
282 typedef chrono::time_point<system_clock> time_point;
308 typedef chrono::duration<rep, period> duration;
309 typedef chrono::time_point<file_clock> time_point;
334 typedef chrono::time_point<steady_clock, duration> time_point;
654 chrono::hours h; // exposition only
655 chrono::minutes m; // exposition only
656 chrono::seconds s; // exposition only
667 constexpr chrono::hours hours() const noexcept;
668 constexpr chrono::minutes minutes() const noexcept;
669 constexpr chrono::seconds seconds() const noexcept;
859 } // chrono
863 struct formatter<chrono::sys_time<Duration>, charT>; // C++20
865 struct formatter<chrono::filetime<Duration>, charT>; // C++20
867 struct formatter<chrono::local_time<Duration>, charT>; // C++20
869 struct formatter<chrono::duration<Rep, Period>, charT>; // C++20
870 template<class charT> struct formatter<chrono::day, charT>; // C++20
871 template<class charT> struct formatter<chrono::month, charT>; // C++20
872 template<class charT> struct formatter<chrono::year, charT>; // C++20
873 template<class charT> struct formatter<chrono::weekday, charT>; // C++20
874 template<class charT> struct formatter<chrono::weekday_indexed, charT>; // C++20
875 template<class charT> struct formatter<chrono::weekday_last, charT>; // C++20
876 template<class charT> struct formatter<chrono::month_day, charT>; // C++20
877 template<class charT> struct formatter<chrono::month_day_last, charT>; // C++20
878 template<class charT> struct formatter<chrono::month_weekday, charT>; // C++20
879 template<class charT> struct formatter<chrono::month_weekday_last, charT>; // C++20
880 template<class charT> struct formatter<chrono::year_month, charT>; // C++20
881 template<class charT> struct formatter<chrono::year_month_day, charT>; // C++20
882 template<class charT> struct formatter<chrono::year_month_day_last, charT>; // C++20
883 template<class charT> struct formatter<chrono::year_month_weekday, charT>; // C++20
884 template<class charT> struct formatter<chrono::year_month_weekday_last, charT>; // C++20
886 struct formatter<chrono::hh_mm_ss<duration<Rep, Period>>, charT>; // C++20
887 template<class charT> struct formatter<chrono::sys_info, charT>; // C++20
888 template<class charT> struct formatter<chrono::local_info, charT>; // C++20
890 struct formatter<chrono::zoned_time<Duration, TimeZonePtr>, charT>;
893 namespace chrono {
896 inline constexpr chrono::weekday Sunday{0}; // C++20
897 inline constexpr chrono::weekday Monday{1}; // C++20
898 inline constexpr chrono::weekday Tuesday{2}; // C++20
899 inline constexpr chrono::weekday Wednesday{3}; // C++20
900 inline constexpr chrono::weekday Thursday{4}; // C++20
901 inline constexpr chrono::weekday Friday{5}; // C++20
902 inline constexpr chrono::weekday Saturday{6}; // C++20
904 inline constexpr chrono::month January{1}; // C++20
905 inline constexpr chrono::month February{2}; // C++20
906 inline constexpr chrono::month March{3}; // C++20
907 inline constexpr chrono::month April{4}; // C++20
908 inline constexpr chrono::month May{5}; // C++20
909 inline constexpr chrono::month June{6}; // C++20
910 inline constexpr chrono::month July{7}; // C++20
911 inline constexpr chrono::month August{8}; // C++20
912 inline constexpr chrono::month September{9}; // C++20
913 inline constexpr chrono::month October{10}; // C++20
914 inline constexpr chrono::month November{11}; // C++20
915 inline constexpr chrono::month December{12}; // C++20
916 } // chrono
920 constexpr chrono::hours operator ""h(unsigned long long); // C++14
921 constexpr chrono::duration<unspecified , ratio<3600,1>> operator ""h(long double); // C++14
922 constexpr chrono::minutes operator ""min(unsigned long long); // C++14
923 constexpr chrono::duration<unspecified , ratio<60,1>> operator ""min(long double); // C++14
924 constexpr chrono::seconds operator ""s(unsigned long long); // C++14
925 constexpr chrono::duration<unspecified > operator ""s(long double); // C++14
926 constexpr chrono::milliseconds operator ""ms(unsigned long long); // C++14
927 constexpr chrono::duration<unspecified , milli> operator ""ms(long double); // C++14
928 constexpr chrono::microseconds operator ""us(unsigned long long); // C++14
929 constexpr chrono::duration<unspecified , micro> operator ""us(long double); // C++14
930 constexpr chrono::nanoseconds operator ""ns(unsigned long long); // C++14
931 constexpr chrono::duration<unspecified , nano> operator ""ns(long double); // C++14
932 constexpr chrono::day operator ""d(unsigned long long d) noexcept…
933 constexpr chrono::year operator ""y(unsigned long long y) noexcept…