Lines Matching refs:__out
5339 format(_OutputIter __out, const char_type* __fmt_first,
5345 format(_OutputIter __out, const basic_string<char_type, _ST, _SA>& __fmt,
5347 {return format(__out, __fmt.data(), __fmt.data() + __fmt.size(), __flags);}
5459 match_results<_BidirectionalIterator, _Allocator>::format(_OutputIter __out,
5468 __out = _VSTD::copy(__matches_[0].first, __matches_[0].second,
5469 __out);
5476 __out = _VSTD::copy(__matches_[__i].first,
5477 __matches_[__i].second, __out);
5481 *__out = *__fmt_first;
5482 ++__out;
5487 *__out = *__fmt_first;
5488 ++__out;
5501 *__out = *++__fmt_first;
5502 ++__out;
5506 __out = _VSTD::copy(__matches_[0].first, __matches_[0].second,
5507 __out);
5511 __out = _VSTD::copy(__prefix_.first, __prefix_.second, __out);
5515 __out = _VSTD::copy(__suffix_.first, __suffix_.second, __out);
5528 __out = _VSTD::copy(__matches_[__i].first,
5529 __matches_[__i].second, __out);
5533 *__out = *__fmt_first;
5534 ++__out;
5541 *__out = *__fmt_first;
5542 ++__out;
5546 return __out;
6504 regex_replace(_OutputIterator __out,
6515 __out = _VSTD::copy(__first, __last, __out);
6523 __out = _VSTD::copy(__i->prefix().first, __i->prefix().second, __out);
6524 __out = __i->format(__out, __fmt, __fmt + __len, __flags);
6530 __out = _VSTD::copy(__lm.first, __lm.second, __out);
6532 return __out;
6539 regex_replace(_OutputIterator __out,
6545 return _VSTD::regex_replace(__out, __first, __last, __e, __fmt.c_str(), __flags);