Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_char.h39 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_integ… in parse()
40 __format_spec::__process_parsed_char(__parser_, "a character"); in parse()
46 …if (__parser_.__type_ == __format_spec::__type::__default || __parser_.__type_ == __format_spec::_… in format()
47 …return __formatter::__format_char(__value, __ctx.out(), __parser_.__get_parsed_std_specifications(… in format()
50 if (__parser_.__type_ == __format_spec::__type::__debug) in format()
51 …return __formatter::__format_escaped_char(__value, __ctx.out(), __parser_.__get_parsed_std_specifi… in format()
58 __parser_.__get_parsed_std_specifications(__ctx)); in format()
61 …static_cast<make_unsigned_t<_CharT>>(__value), __ctx, __parser_.__get_parsed_std_specifications(__… in format()
72 …_LIBCPP_HIDE_FROM_ABI constexpr void set_debug_format() { __parser_.__type_ = __format_spec::__typ… in set_debug_format()
75 __format_spec::__parser<_CharT> __parser_; member
H A Dformatter_bool.h41 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_integ…
42 __format_spec::__process_parsed_bool(__parser_, "a bool");
48 switch (__parser_.__type_) {
51 …return __formatter::__format_bool(__value, __ctx, __parser_.__get_parsed_std_specifications(__ctx)…
62 static_cast<unsigned>(__value), __ctx, __parser_.__get_parsed_std_specifications(__ctx));
70 __format_spec::__parser<_CharT> __parser_;
H A Dformatter_string.h37 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_strin… in parse()
38 __format_spec::__process_display_type_string(__parser_.__type_); in parse()
46 if (__parser_.__type_ == __format_spec::__type::__debug) in format()
47 …return __formatter::__format_escaped_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifi… in format()
50 …return __formatter::__write_string(__str, __ctx.out(), __parser_.__get_parsed_std_specifications(_… in format()
54 …_LIBCPP_HIDE_FROM_ABI constexpr void set_debug_format() { __parser_.__type_ = __format_spec::__typ… in set_debug_format()
57 __format_spec::__parser<_CharT> __parser_{.__alignment_ = __format_spec::__alignment::__left};
69 …__format_spec::__parsed_specifications<_CharT> __specs = _Base::__parser_.__get_parsed_std_specifi…
71 if (_Base::__parser_.__type_ == __format_spec::__type::__debug)
H A Drange_formatter.h57 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 Dformatter_pointer.h37 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_point… in parse()
38 __format_spec::__process_display_type_pointer(__parser_.__type_, "a pointer"); in parse()
44 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format()
54 __format_spec::__parser<_CharT> __parser_; member
H A Dformatter_integer.h38 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_integ… in parse()
39 __format_spec::__process_parsed_integer(__parser_, "an integer"); in parse()
45 …__format_spec::__parsed_specifications<_CharT> __specs = __parser_.__get_parsed_std_specifications… in format()
57 __format_spec::__parser<_CharT> __parser_; member
H A Dformatter_tuple.h51 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 Dformatter_floating_point.h756 …typename _ParseContext::iterator __result = __parser_.__parse(__ctx, __format_spec::__fields_float…
757 __format_spec::__process_parsed_floating_point(__parser_, "a floating-point");
763 …return __formatter::__format_floating_point(__value, __ctx, __parser_.__get_parsed_std_specificati…
766 __format_spec::__parser<_CharT> __parser_;
H A Dformat_functions.h184 if (__formatter.__parser_.__width_as_arg_) in __compile_time_validate_argument()
185 __validate_type(__ctx.arg(__formatter.__parser_.__width_)); in __compile_time_validate_argument()
188 if (__formatter.__parser_.__precision_as_arg_) in __compile_time_validate_argument()
189 __validate_type(__ctx.arg(__formatter.__parser_.__precision_)); in __compile_time_validate_argument()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__chrono/
H A Dparser_std_format_spec.h157 __parser<_CharT> __parser_; variable
217 __parser_.__hour_ = true; in __parse_conversion_spec()
225 __parser_.__hour_ = true; in __parse_conversion_spec()
237 __parser_.__month_name_ = true; in __parse_conversion_spec()
250 __parser_.__day_of_year_ = true; in __parse_conversion_spec()
259 __parser_.__week_of_year_ = true; in __parse_conversion_spec()
273 __parser_.__weekday_name_ = true; in __parse_conversion_spec()
277 __parser_.__weekday_ = true; in __parse_conversion_spec()
318 __parser_.__hour_ = true; in __parse_modifier_E()
367 __parser_.__hour_ = true; in __parse_modifier_O()
[all …]
H A Dformatter.h574 return __parser_.__parse(__ctx, __fields, __flags); in __parse()
580 …__value, __ctx, __parser_.__parser_.__get_parsed_chrono_specifications(__ctx), __parser_.__chrono_… in format()
583 __format_spec::__parser_chrono<_CharT> __parser_; member
/freebsd-14.2/contrib/llvm-project/libcxx/include/__thread/
H A Dformatter.h41 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};