Lines Matching refs:__delim
520 _ForwardIterator __first, _ForwardIterator __last, _CharT __delim, _CharT __escape )
523 __str.push_back(__delim);
526 if (_Traits::eq (*__first, __escape) || _Traits::eq (*__first, __delim))
530 __str.push_back(__delim);
536 __quoted_input ( basic_istream<_CharT, _Traits> &__is, _String & __string, _CharT __delim, _CharT _…
544 if (!_Traits::eq (__c, __delim)) // no delimiter, read the whole string
564 else if (_Traits::eq (__c, __delim))
577 _CharT __delim;
581 : __first(__f), __last(__l), __delim(__d), __escape(__e) {}
590 … return __quoted_output (__os, __proxy.__first, __proxy.__last, __proxy.__delim, __proxy.__escape);
597 _CharT __delim;
601 : __string(__s), __delim(__d), __escape(__e) {}
610 …put (__os, __proxy.__string.cbegin (), __proxy.__string.cend (), __proxy.__delim, __proxy.__escape…
620 return __quoted_input ( __is, __proxy.__string, __proxy.__delim, __proxy.__escape );
627 quoted ( const _CharT *__s, _CharT __delim = _CharT('"'), _CharT __escape =_CharT('\\'))
631 return __quoted_output_proxy<_CharT, const _CharT *> ( __s, __end, __delim, __escape );
637 quoted ( const basic_string <_CharT, _Traits, _Allocator> &__s, _CharT __delim = _CharT('"'), _Char…
641 ( __s.cbegin(), __s.cend (), __delim, __escape );
646 quoted ( basic_string <_CharT, _Traits, _Allocator> &__s, _CharT __delim = _CharT('"'), _CharT __es…
648 return __quoted_proxy<_CharT, _Traits, _Allocator>( __s, __delim, __escape );