| /freebsd/contrib/llvm-project/libcxx/include/__format/ |
| H A D | formatter_char.h | 38 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_integ… in parse() 39 __format_spec::__process_parsed_char(__parser_, "a character"); in parse() 45 …if (__parser_.__type_ == __format_spec::__type::__default || __parser_.__type_ == __format_spec::_… in format() 46 …return __formatter::__format_char(__value, __ctx.out(), __parser_.__get_parsed_std_specifications(… in format() 49 if (__parser_.__type_ == __format_spec::__type::__debug) in format() 50 …return __formatter::__format_escaped_char(__value, __ctx.out(), __parser_.__get_parsed_std_specifi… in format() 57 __parser_.__get_parsed_std_specifications(__ctx)); in format() 60 …static_cast<make_unsigned_t<_CharT>>(__value), __ctx, __parser_.__get_parsed_std_specifications(__… in format() 71 …_LIBCPP_HIDE_FROM_ABI constexpr void set_debug_format() { __parser_.__type_ = __format_spec::__typ… in set_debug_format() 74 __format_spec::__parser<_CharT> __parser_; member
|
| H A D | formatter_bool.h | 40 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_integ… 41 __format_spec::__process_parsed_bool(__parser_, "a bool"); 47 switch (__parser_.__type_) { 50 …return __formatter::__format_bool(__value, __ctx, __parser_.__get_parsed_std_specifications(__ctx)… 61 static_cast<unsigned>(__value), __ctx, __parser_.__get_parsed_std_specifications(__ctx)); 69 __format_spec::__parser<_CharT> __parser_;
|
| H A D | range_formatter.h | 57 auto __begin = __parser_.__parse(__ctx, __format_spec::__fields_range); in parse() 69 if (__parser_.__clear_brackets_) in parse() 100 if (__parser_.__type_ != __format_spec::__type::__default) { in parse() 104 if (__parser_.__clear_brackets_) { in parse() 105 if (__parser_.__type_ == __format_spec::__type::__string) in parse() 110 if (__parser_.__type_ == __format_spec::__type::__string) in parse() 124 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format() 209 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left}; 226 __parser_.__type_ = __format_spec::__type::__string; in __parse_type() 237 __parser_.__type_ = __format_spec::__type::__debug; in __parse_type()
|
| H A D | formatter_string.h | 38 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_strin… in parse() 39 __format_spec::__process_display_type_string(__parser_.__type_); in parse() 47 if (__parser_.__type_ == __format_spec::__type::__debug) in format() 48 …return __formatter::__format_escaped_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifi… in format() 51 …return __formatter::__write_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifications(_… in format() 55 …_LIBCPP_HIDE_FROM_ABI constexpr void set_debug_format() { __parser_.__type_ = __format_spec::__typ… in set_debug_format() 58 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left};
|
| H A D | formatter_pointer.h | 36 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_point… in parse() 37 __format_spec::__process_display_type_pointer(__parser_.__type_, "a pointer"); in parse() 43 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format() 53 __format_spec::__parser<_CharT> __parser_; member
|
| H A D | formatter_integer.h | 37 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_integ… in parse() 38 __format_spec::__process_parsed_integer(__parser_, "an integer"); in parse() 44 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format() 56 __format_spec::__parser<_CharT> __parser_; member
|
| H A D | formatter_tuple.h | 51 auto __begin = __parser_.__parse(__ctx, __format_spec::__fields_tuple); in parse() 55 if (__parser_.__clear_brackets_) in parse() 90 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format() 129 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left};
|
| H A D | formatter_floating_point.h | 758 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_float… 759 __format_spec::__process_parsed_floating_point(__parser_, "a floating-point"); 765 …return __formatter::__format_floating_point(__value, __ctx, __parser_.__get_parsed_std_specificati… 768 __format_spec::__parser<_CharT> __parser_;
|
| H A D | format_functions.h | 185 if (__formatter.__parser_.__width_as_arg_) in __compile_time_validate_argument() 186 __validate_type(__ctx.arg(__formatter.__parser_.__width_)); in __compile_time_validate_argument() 189 if (__formatter.__parser_.__precision_as_arg_) in __compile_time_validate_argument() 190 __validate_type(__ctx.arg(__formatter.__parser_.__precision_)); in __compile_time_validate_argument()
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | parser_std_format_spec.h | 149 _ConstIterator __begin = __parser_.__parse(__ctx, __fields); in __parse() 160 __parser<_CharT> __parser_; variable 220 __parser_.__hour_ = true; in __parse_conversion_spec() 228 __parser_.__hour_ = true; in __parse_conversion_spec() 240 __parser_.__month_name_ = true; in __parse_conversion_spec() 253 __parser_.__day_of_year_ = true; in __parse_conversion_spec() 262 __parser_.__week_of_year_ = true; in __parse_conversion_spec() 276 __parser_.__weekday_name_ = true; in __parse_conversion_spec() 280 __parser_.__weekday_ = true; in __parse_conversion_spec() 321 __parser_.__hour_ = true; in __parse_modifier_E() [all …]
|
| H A D | formatter.h | 708 return __parser_.__parse(__ctx, __fields, __flags); in __parse() 714 …__value, __ctx, __parser_.__parser_.__get_parsed_chrono_specifications(__ctx), __parser_.__chrono_… in format() 717 __format_spec::__parser_chrono<_CharT> __parser_; member
|
| /freebsd/contrib/llvm-project/libcxx/include/__thread/ |
| H A D | formatter.h | 41 return __parser_.__parse(__ctx, __format_spec::__fields_fill_align_width); 63 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… 71 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__right};
|