Lines Matching refs:__output
5271 format(_OutputIter __output, const char_type* __fmt_first,
5277 format(_OutputIter __output, const basic_string<char_type, _ST, _SA>& __fmt,
5279 {return format(__output, __fmt.data(), __fmt.data() + __fmt.size(), __flags);}
5391 match_results<_BidirectionalIterator, _Allocator>::format(_OutputIter __output,
5400 __output = _VSTD::copy(__matches_[0].first, __matches_[0].second,
5401 __output);
5408 __output = _VSTD::copy((*this)[__i].first,
5409 (*this)[__i].second, __output);
5413 *__output = *__fmt_first;
5414 ++__output;
5419 *__output = *__fmt_first;
5420 ++__output;
5433 *__output = *++__fmt_first;
5434 ++__output;
5438 __output = _VSTD::copy(__matches_[0].first, __matches_[0].second,
5439 __output);
5443 __output = _VSTD::copy(__prefix_.first, __prefix_.second, __output);
5447 __output = _VSTD::copy(__suffix_.first, __suffix_.second, __output);
5460 __output = _VSTD::copy((*this)[__i].first,
5461 (*this)[__i].second, __output);
5465 *__output = *__fmt_first;
5466 ++__output;
5473 *__output = *__fmt_first;
5474 ++__output;
5478 return __output;
6468 regex_replace(_OutputIterator __output,
6479 __output = _VSTD::copy(__first, __last, __output);
6487 __output = _VSTD::copy(__i->prefix().first, __i->prefix().second, __output);
6488 __output = __i->format(__output, __fmt, __fmt + __len, __flags);
6494 __output = _VSTD::copy(__lm.first, __lm.second, __output);
6496 return __output;
6503 regex_replace(_OutputIterator __output,
6509 return _VSTD::regex_replace(__output, __first, __last, __e, __fmt.c_str(), __flags);