Searched refs:ostreambuf_iterator (Results 1 - 25 of 34) sorted by relevance

12

/openbsd-current/gnu/lib/libstdc++/libstdc++/src/
H A Dlocale-inst.cc47 template class money_put<char, ostreambuf_iterator<char> >;
56 template class money_put<wchar_t, ostreambuf_iterator<wchar_t> >;
64 template class num_put<char, ostreambuf_iterator<char> >;
66 ostreambuf_iterator<char>
67 num_put<char, ostreambuf_iterator<char> >::
68 _M_convert_int(ostreambuf_iterator<char>, ios_base&, char,
72 ostreambuf_iterator<char>
73 num_put<char, ostreambuf_iterator<char> >::
74 _M_convert_int(ostreambuf_iterator<char>, ios_base&, char,
79 ostreambuf_iterator<cha
[all...]
H A Dconcept-inst.cc75 _Instantiate(_OutputIteratorConcept<std::ostreambuf_iterator<
79 _Instantiate(_OutputIteratorConcept<std::ostreambuf_iterator<
/openbsd-current/gnu/gcc/libstdc++-v3/src/
H A Dlocale-inst.cc54 template class money_put<C, ostreambuf_iterator<C> >;
68 ostreambuf_iterator<C>
69 money_put<C, ostreambuf_iterator<C> >::
70 _M_insert<true>(ostreambuf_iterator<C>, ios_base&, C,
74 ostreambuf_iterator<C>
75 money_put<C, ostreambuf_iterator<C> >::
76 _M_insert<false>(ostreambuf_iterator<C>, ios_base&, C,
86 template class num_put<C, ostreambuf_iterator<C> >;
132 ostreambuf_iterator<C>
133 num_put<C, ostreambuf_iterator<
[all...]
H A Dcompatibility-ldbl.cc43 template class num_put<C, ostreambuf_iterator<C> >;
45 template class money_put<C, ostreambuf_iterator<C> >;
58 template class num_put<C, ostreambuf_iterator<C> >;
60 template class money_put<C, ostreambuf_iterator<C> >;
H A Dconcept-inst.cc75 _Instantiate(_OutputIteratorConcept<std::ostreambuf_iterator<
79 _Instantiate(_OutputIteratorConcept<std::ostreambuf_iterator<
/openbsd-current/gnu/llvm/libcxx/include/__iterator/
H A Dostreambuf_iterator.h27 class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator class in inherits:iterator
51 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT
53 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT
55 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator=(_CharT __c)
61 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator*() {return *this;}
62 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++() {return *this;}
63 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator& operator++(int) {return *this;}
69 ostreambuf_iterator<_Ch, _Tr>
70 __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,
/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dstreambuf_iterator.h66 ostreambuf_iterator<_CharT2> >::__type
68 ostreambuf_iterator<_CharT2>);
207 class ostreambuf_iterator class in inherits:iterator
222 ostreambuf_iterator<_CharT2> >::__type
224 ostreambuf_iterator<_CharT2>);
232 ostreambuf_iterator(ostream_type& __s) throw () function in class:ostreambuf_iterator
236 ostreambuf_iterator(streambuf_type* __s) throw () function in class:ostreambuf_iterator
240 ostreambuf_iterator&
250 ostreambuf_iterator&
255 ostreambuf_iterator
[all...]
H A Dlocalefwd.h47 #include <iosfwd> // For ostreambuf_iterator, istreambuf_iterator
135 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
153 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
155 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
163 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
H A Dbasic_ios.h79 typedef num_put<_CharT, ostreambuf_iterator<_CharT, _Traits> >
H A Dstl_algobase.h321 ostreambuf_iterator<_CharT> >::__type
322 __copy_aux(_CharT*, _CharT*, ostreambuf_iterator<_CharT>);
326 ostreambuf_iterator<_CharT> >::__type
327 __copy_aux(const _CharT*, const _CharT*, ostreambuf_iterator<_CharT>);
407 ostreambuf_iterator<_CharT> >::__type
409 ostreambuf_iterator<_CharT>);
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstreambuf_iterator.h156 class ostreambuf_iterator class in namespace:std
171 ostreambuf_iterator(ostream_type& __s) throw () function in class:std::ostreambuf_iterator
174 ostreambuf_iterator(streambuf_type* __s) throw () function in class:std::ostreambuf_iterator
177 ostreambuf_iterator&
186 ostreambuf_iterator&
190 ostreambuf_iterator&
194 ostreambuf_iterator&
202 ostreambuf_iterator&
H A Dlocalefwd.h47 #include <iosfwd> // For ostreambuf_iterator, istreambuf_iterator
134 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
151 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
153 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
160 template<typename _CharT, typename _OutIter = ostreambuf_iterator<_CharT> >
H A Dbasic_ios.h79 typedef ostreambuf_iterator<_CharT, _Traits> __ostreambuf_iter;
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/24_iterators/
H A Dostreambuf_iterator.cc21 // 24.5.4 template class ostreambuf_iterator
32 typedef ostreambuf_iterator<char> test_iterator;
53 typedef std::ostreambuf_iterator<char> costreambuf_iter;
88 // ostreambuf_iterator& operator++();
89 // ostreambuf_iterator& operator++(int);
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/22_locale/
H A Dmoney_put_members_char.cc36 typedef ostreambuf_iterator<char> iterator_type;
170 typedef ostreambuf_iterator<char> iterator_type;
327 typedef ostreambuf_iterator<char> OutIt;
354 typedef ostreambuf_iterator<char> OutIt;
H A Dmoney_put_members_wchar_t.cc37 typedef ostreambuf_iterator<wchar_t> iterator_type;
170 typedef ostreambuf_iterator<wchar_t> iterator_type;
327 typedef ostreambuf_iterator<wchar_t> OutIt;
354 typedef ostreambuf_iterator<wchar_t> OutIt;
H A Dfacet.cc33 typedef std::ostreambuf_iterator<char> output_iterator;
H A Dnum_put_members_char.cc33 typedef ostreambuf_iterator<char> iterator_type;
H A Dnum_put_members_wchar_t.cc34 typedef ostreambuf_iterator<wchar_t> iterator_type;
/openbsd-current/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_iosfwd.h101 class ostreambuf_iterator;
H A Dstd_ostream.h73 typedef num_put<_CharT, ostreambuf_iterator<_CharT, _Traits> >
H A Dstd_streambuf.h153 friend class ostreambuf_iterator<char_type, traits_type>;
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_iosfwd.h101 class ostreambuf_iterator;
H A Dstd_ostream.h72 typedef ostreambuf_iterator<_CharT, _Traits> __ostreambuf_iter;
H A Dstd_streambuf.h156 friend class ostreambuf_iterator<char_type, traits_type>;

Completed in 237 milliseconds

12