Home
last modified time | relevance | path

Searched refs:__parser_ (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/libcxx/include/__format/
H A Dformatter_char.h38 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(…
48 if (__parser_.__type_ == __format_spec::__type::__debug)
49 …return __formatter::__format_escaped_char(__value, __ctx.out(), __parser_.__get_parsed_std_specifi…
58 __parser_.__get_parsed_std_specifications(__ctx));
60 …return __formatter::__format_integer(__value, __ctx, __parser_.__get_parsed_std_specifications(__c…
70 …_LIBCPP_HIDE_FROM_ABI constexpr void set_debug_format() { __parser_.__type_ = __format_spec::__typ… in set_debug_format()
73 __format_spec::__parser<_CharT> __parser_; member
H A Dformatter_bool.h43 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 Dformatter_string.h37 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_string);
38 __format_spec::__process_display_type_string(__parser_.__type_);
44 if (__parser_.__type_ == __format_spec::__type::__debug)
45 …return __formatter::__format_escaped_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifi…
48 …return __formatter::__write_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifications(_…
52 …_LIBCPP_HIDE_FROM_ABI constexpr void set_debug_format() { __parser_.__type_ = __format_spec::__typ… in set_debug_format()
55 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left};
68 …__format_spec::__parsed_specifications<_CharT> __specs = _Base::__parser_.__get_parsed_std_specifi…
70 if (_Base::__parser_.__type_ == __format_spec::__type::__debug)
H A Dformatter_pointer.h35 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 Drange_formatter.h58 const _CharT* __begin = __parser_.__parse(__parse_ctx, __format_spec::__fields_range); in parse()
82 if (__parser_.__type_ != __format_spec::__type::__default) { in parse()
87 if (__parser_.__type_ == __format_spec::__type::__string) in parse()
92 if (__parser_.__type_ == __format_spec::__type::__string) in parse()
120 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format()
211 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left};
227 __parser_.__type_ = __format_spec::__type::__string; in __parse_type()
238 __parser_.__type_ = __format_spec::__type::__debug; in __parse_type()
H A Dformatter_integer.h39 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 Dformatter_tuple.h53 const _CharT* __begin = __parser_.__parse(__parse_ctx, __format_spec::__fields_tuple); in parse()
89 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format()
157 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left};
H A Dformatter_floating_point.h727 auto __result = __parser_.__parse(__parse_ctx, __format_spec::__fields_floating_point);
728 __format_spec::__process_parsed_floating_point(__parser_);
734 …return __formatter::__format_floating_point(__value, __ctx, __parser_.__get_parsed_std_specificati…
737 __format_spec::__parser<_CharT> __parser_;
H A Dformat_functions.h179 if (__formatter.__parser_.__width_as_arg_) in __compile_time_validate_argument()
180 __format::__compile_time_validate_integral(__ctx.arg(__formatter.__parser_.__width_)); in __compile_time_validate_argument()
183 if (__formatter.__parser_.__precision_as_arg_) in __compile_time_validate_argument()
184 __format::__compile_time_validate_integral(__ctx.arg(__formatter.__parser_.__precision_)); in __compile_time_validate_argument()
/openbsd-src/gnu/llvm/libcxx/include/__chrono/
H A Dparser_std_format_spec.h144 const _CharT* __begin = __parser_.__parse(__parse_ctx, __fields);
155 __parser<_CharT> __parser_; variable
233 __parser_.__month_name_ = true; in __parse_conversion_spec()
246 __parser_.__day_of_year_ = true; in __parse_conversion_spec()
255 __parser_.__week_of_year_ = true; in __parse_conversion_spec()
269 __parser_.__weekday_name_ = true; in __parse_conversion_spec()
273 __parser_.__weekday_ = true; in __parse_conversion_spec()
381 __parser_.__week_of_year_ = true; in __parse_modifier_O()
387 __parser_.__weekday_ = true; in __parse_modifier_O()
H A Dformatter.h498 return __parser_.__parse(__parse_ctx, __fields, __flags);
504 …__value, __ctx, __parser_.__parser_.__get_parsed_chrono_specifications(__ctx), __parser_.__chrono_…
507 __format_spec::__parser_chrono<_CharT> __parser_; member