Lines Matching refs:chars_format
24 enum class _LIBCPP_ENUM_VIS chars_format enum
32 inline _LIBCPP_INLINE_VISIBILITY constexpr chars_format
33 operator~(chars_format __x) {
34 return chars_format(~_VSTD::__to_underlying(__x));
37 inline _LIBCPP_INLINE_VISIBILITY constexpr chars_format
38 operator&(chars_format __x, chars_format __y) {
39 return chars_format(_VSTD::__to_underlying(__x) &
43 inline _LIBCPP_INLINE_VISIBILITY constexpr chars_format
44 operator|(chars_format __x, chars_format __y) {
45 return chars_format(_VSTD::__to_underlying(__x) |
49 inline _LIBCPP_INLINE_VISIBILITY constexpr chars_format
50 operator^(chars_format __x, chars_format __y) {
51 return chars_format(_VSTD::__to_underlying(__x) ^
55 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 chars_format&
56 operator&=(chars_format& __x, chars_format __y) {
61 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 chars_format&
62 operator|=(chars_format& __x, chars_format __y) {
67 inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 chars_format&
68 operator^=(chars_format& __x, chars_format __y) {