Searched refs:__parser_ (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | formatter_char.h | 38 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_integral); 39 __format_spec::__process_parsed_char(__parser_); 44 …if (__parser_.__type_ == __format_spec::__type::__default || __parser_.__type_ == __format_spec::_… 45 …return __formatter::__format_char(__value, __ctx.out(), __parser_.__get_parsed_std_specifications(… 53 __parser_.__get_parsed_std_specifications(__ctx)); 55 …return __formatter::__format_integer(__value, __ctx, __parser_.__get_parsed_std_specifications(__c… 64 __format_spec::__parser<_CharT> __parser_; member
|
| H A D | formatter_bool.h | 43 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_integral); 44 __format_spec::__process_parsed_bool(__parser_); 49 switch (__parser_.__type_) { 52 …return __formatter::__format_bool(__value, __ctx, __parser_.__get_parsed_std_specifications(__ctx)… 63 static_cast<unsigned>(__value), __ctx, __parser_.__get_parsed_std_specifications(__ctx)); 71 __format_spec::__parser<_CharT> __parser_;
|
| H A D | formatter_pointer.h | 35 constexpr __formatter_pointer() { __parser_.__alignment_ = __format_spec::__alignment::__right; } in __formatter_pointer() 39 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_pointer); 40 __format_spec::__process_display_type_pointer(__parser_.__type_); 45 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… 51 __format_spec::__parser<_CharT> __parser_; member
|
| H A D | formatter_string.h | 37 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_string); 38 __format_spec::__process_display_type_string(__parser_.__type_); 43 …return __formatter::__write_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifications(_… 46 __format_spec::__parser<_CharT> __parser_; member 70 …__format_spec::__parsed_specifications<_CharT> __specs = _Base::__parser_.__get_parsed_std_specifi…
|
| H A D | formatter_integer.h | 39 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_integral); 40 __format_spec::__process_parsed_integer(__parser_); 46 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… 58 __format_spec::__parser<_CharT> __parser_; member
|
| H A D | formatter_floating_point.h | 692 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_floating_point); 693 __format_spec::__process_parsed_floating_point(__parser_); 699 …return __formatter::__format_floating_point(__value, __ctx, __parser_.__get_parsed_std_specificati… 702 __format_spec::__parser<_CharT> __parser_;
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | format | 320 if (__formatter.__parser_.__width_as_arg_) 321 __format::__compile_time_validate_integral(__ctx.arg(__formatter.__parser_.__width_)); 324 if (__formatter.__parser_.__precision_as_arg_) 325 __format::__compile_time_validate_integral(__ctx.arg(__formatter.__parser_.__precision_));
|