Lines Matching defs:__begin
245 __handle_replacement_field(_Iterator __begin, _Iterator __end, _ParseCtx& __parse_ctx, _Ctx& __ctx) {
247 __format::__parse_number_result __r = __format::__parse_arg_id(__begin, __end, __parse_ctx);
290 __begin = __parse_ctx.begin();
291 if (__begin == __end || *__begin != _CharT('}'))
294 return ++__begin;
302 auto __begin = __parse_ctx.begin();
305 while (__begin != __end) {
306 switch (*__begin) {
308 ++__begin;
309 if (__begin == __end)
312 if (*__begin != _CharT('{')) [[likely]] {
314 __begin = __format::__handle_replacement_field(__begin, __end, __parse_ctx, __ctx);
317 // The output is written and __begin points to the next character. So
325 ++__begin;
326 if (__begin == __end || *__begin != _CharT('}'))
333 *__out_it++ = *__begin++;