Searched refs:weekday_indexed (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | month_weekday.h | 30 chrono::weekday_indexed __wdi_; 34 const chrono::weekday_indexed& __wdival) noexcept in month_weekday() 37 _LIBCPP_HIDE_FROM_ABI inline constexpr chrono::weekday_indexed weekday_indexed() const noexcept { return __wdi_; } in ok() 43 return __lhs.month() == __rhs.month() && __lhs.weekday_indexed() == __rhs.weekday_indexed(); 47 operator/(const month& __lhs, const weekday_indexed& __rhs) noexcept { 51 _LIBCPP_HIDE_FROM_ABI inline constexpr month_weekday operator/(int __lhs, const weekday_indexed& __rhs) noexcept { 56 operator/(const weekday_indexed& __lhs, const month& __rhs) noexcept { 60 _LIBCPP_HIDE_FROM_ABI inline constexpr month_weekday operator/(const weekday_indexed 36 _LIBCPP_HIDE_FROM_ABI inline constexpr chrono::weekday_indexed weekday_indexed() const noexcept { return __wdi_; } weekday_indexed() function [all...] |
H A D | weekday.h | 29 class weekday_indexed; variable 69 _LIBCPP_HIDE_FROM_ABI constexpr weekday_indexed operator[](unsigned __index) const noexcept; 131 class weekday_indexed { 137 weekday_indexed() = default; 138 …_LIBCPP_HIDE_FROM_ABI inline constexpr weekday_indexed(const chrono::weekday& __wdval, unsigned __… in weekday_indexed() function 146 operator==(const weekday_indexed& __lhs, const weekday_indexed& __rhs) noexcept { 164 _LIBCPP_HIDE_FROM_ABI inline constexpr weekday_indexed weekday::operator[](unsigned __index) const … 165 return weekday_indexed{*this, __index};
|
H A D | year_month_weekday.h | 39 chrono::weekday_indexed __wdi_; 44 const chrono::year& __yval, const chrono::month& __mval, const chrono::weekday_indexed& __wdival) noexcept in year_month_weekday() 59 _LIBCPP_HIDE_FROM_ABI inline constexpr chrono::weekday_indexed weekday_indexed() const noexcept { return __wdi_; } in weekday_indexed() function 94 __lhs.weekday_indexed() == __rhs.weekday_indexed(); in __to_days() 98 operator/(const year_month& __lhs, const weekday_indexed& __rhs) noexcept { 104 return year_month_weekday{__lhs, __rhs.month(), __rhs.weekday_indexed()}; 122 return (__lhs.year() / __lhs.month() + __rhs) / __lhs.weekday_indexed(); 137 return year_month_weekday{__lhs.year() + __rhs, __lhs.month(), __lhs.weekday_indexed()}; [all...] |
H A D | formatter.h | 421 else if constexpr (same_as<_Tp, chrono::weekday_indexed>) in __weekday_ok() 472 else if constexpr (same_as<_Tp, chrono::weekday_indexed>) in __weekday_name_ok() 481 return __value.weekday_indexed().ok(); in __weekday_name_ok() 483 return __value.weekday_indexed().ok(); in __weekday_name_ok() 523 else if constexpr (same_as<_Tp, chrono::weekday_indexed>) in __date_ok() 574 else if constexpr (same_as<_Tp, chrono::weekday_indexed>) in __month_name_ok() 815 struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_indexed, _CharT> : public __formatter_chrono<…
|
H A D | convert_to_tm.h | 149 …else if constexpr (same_as<_ChronoT, chrono::weekday_indexed> || same_as<_ChronoT, chrono::weekday… in __convert_to_tm() 157 __result.tm_wday = __value.weekday_indexed().weekday().c_encoding(); in __convert_to_tm()
|
H A D | ostream.h | 176 operator<<(basic_ostream<_CharT, _Traits>& __os, const weekday_indexed& __wdi) { 210 …s.getloc(), _LIBCPP_STATICALLY_WIDEN(_CharT, "{:L}/{:L}"), __mwd.month(), __mwd.weekday_indexed()); 248 __ymwd.weekday_indexed());
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | chrono | 407 // 25.8.7, class weekday_indexed // C++20 409 class weekday_indexed; 410 constexpr bool operator==(const weekday_indexed& x, const weekday_indexed& y) noexcept; 414 operator<<(basic_ostream<charT, traits>& os, const weekday_indexed& wdi); 591 operator/(const month& m, const weekday_indexed& wdi) noexcept; 593 operator/(int m, const weekday_indexed& wdi) noexcept; 595 operator/(const weekday_indexed& wdi, const month& m) noexcept; 597 operator/(const weekday_indexed& wdi, int m) noexcept; 629 operator/(const year_month& ym, const weekday_indexed& wdi) noexcept; 874 template<class charT> struct formatter<chrono::weekday_indexed, charT>; // C++20
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | chrono.cppm |
|
H A D | chrono.inc | 148 // [time.cal.wdidx], class weekday_indexed 149 using std::chrono::weekday_indexed;
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 3408 SYMBOL(weekday_indexed, std::chrono::, <chrono>)
|