Lines Matching refs:ostreambuf_iterator
362 class ostreambuf_iterator
371 ostreambuf_iterator(ostream_type& s) noexcept;
372 ostreambuf_iterator(streambuf_type* s) noexcept;
373 ostreambuf_iterator& operator=(charT c);
374 ostreambuf_iterator& operator*();
375 ostreambuf_iterator& operator++();
376 ostreambuf_iterator& operator++(int);
1056 class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator
1067 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT
1069 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT
1071 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c)
1077 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*() {return *this;}
1078 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++() {return *this;}
1079 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;}
1089 ostreambuf_iterator<_Ch, _Tr>
1090 __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,