Home
last modified time | relevance | path

Searched refs:__fmt_first (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dregex.tcc356 const match_results<_Bi_iter, _Alloc>::char_type* __fmt_first, in format() argument
376 for (; __fmt_first != __fmt_last; __fmt_first++) in format()
381 if (__fctyp.is(__ctype_type::digit, *__fmt_first)) in format()
382 __output(__traits.value(*__fmt_first, 10)); in format()
384 *__out++ = *__fmt_first; in format()
387 if (*__fmt_first == '\\') in format()
392 if (*__fmt_first == '&') in format()
397 *__out++ = *__fmt_first; in format()
406 auto __next = std::find(__fmt_first, __fmt_last, '$'); in format()
410 __out = std::copy(__fmt_first, __next, __out); in format()
[all …]
Dregex.h2032 format(_Out_iter __out, const char_type* __fmt_first, in _GLIBCXX_VISIBILITY()