Home
last modified time | relevance | path

Searched refs:__parse_ctx (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_string.h59 __parse_zero(_Iterator __begin, _Iterator, auto& __parse_ctx) {
60 __parse_ctx.check_arg_id(0); in __parse_zero() argument
66 __parse_automatic(_Iterator __begin, _Iterator, auto& __parse_ctx) {
67 size_t __value = __parse_ctx.next_arg_id(); in __parse_automatic() argument
75 __parse_manual(_Iterator __begin, _Iterator __end, auto& __parse_ctx) {
77 __parse_ctx.check_arg_id(__r.__value);
135 __parse_arg_id(_Iterator __begin, _Iterator __end, auto& __parse_ctx) {
139 return __detail::__parse_zero(__begin, __end, __parse_ctx);
146 return __detail::__parse_automatic(__begin, __end, __parse_ctx); in __parse_arg_id()
151 return __detail::__parse_manual(__begin, __end, __parse_ctx); in __parse_arg_id()
78 __parse_manual(_Iterator __begin,_Iterator __end,auto & __parse_ctx) __parse_manual() argument
143 __parse_arg_id(_Iterator __begin,_Iterator __end,auto & __parse_ctx) __parse_arg_id() argument
[all...]
H A Dformat_functions.h161 …basic_format_parse_context<_CharT>& __parse_ctx, __compile_time_basic_format_context<_CharT>& __ct… in __compile_time_validate_argument() argument
182 __parse_ctx.advance_to(__formatter.parse(__parse_ctx)); in __compile_time_validate_argument()
194 basic_format_parse_context<_CharT>& __parse_ctx, in __compile_time_visit_format_arg() argument
201 return __format::__compile_time_validate_argument<_CharT, bool>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
203 return __format::__compile_time_validate_argument<_CharT, _CharT>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
205 return __format::__compile_time_validate_argument<_CharT, int>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
207 return __format::__compile_time_validate_argument<_CharT, long long>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
210 return __format::__compile_time_validate_argument<_CharT, __int128_t>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
216 return __format::__compile_time_validate_argument<_CharT, unsigned>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
218 … return __format::__compile_time_validate_argument<_CharT, unsigned long long>(__parse_ctx, __ctx); in __compile_time_visit_format_arg()
[all …]
H A Dformat_arg.h217 …__format_([](basic_format_parse_context<_CharT>& __parse_ctx, _Context& __ctx, const void* __ptr) { in __handle()
223 __parse_ctx.advance_to(__f.parse(__parse_ctx)); in __handle()
358 …_LIBCPP_HIDE_FROM_ABI void format(basic_format_parse_context<char_type>& __parse_ctx, _Context& __… in format() argument
359 __handle_.__format_(__parse_ctx, __ctx, __handle_.__ptr_); in format()