Searched defs:ostreambuf_iterator (Results 1 - 2 of 2) sorted by relevance

/external/stlport/stlport/stl/
H A D_ostreambuf_iterator.h41 class ostreambuf_iterator : class in inherits:iterator
57 ostreambuf_iterator(streambuf_type* __buf) _STLP_NOTHROW : _M_buf(__buf), _M_ok(__buf!=0) {}
58 // ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW : _M_buf(__get_ostreambuf(__o)), _M_ok(_M_buf != 0) {}
59 inline ostreambuf_iterator(ostream_type& __o) _STLP_NOTHROW;
61 ostreambuf_iterator<_CharT, _Traits>& operator=(char_type __c) {
67 ostreambuf_iterator<_CharT, _Traits>& operator*() { return *this; }
68 ostreambuf_iterator<_CharT, _Traits>& operator++() { return *this; }
69 ostreambuf_iterator<_CharT, _Traits>& operator++(int) { return *this; }
79 inline ostreambuf_iterator<_CharT, _Traits>::ostreambuf_iterator(basic_ostrea
83 _STLP_EXPORT_TEMPLATE_CLASS ostreambuf_iterator<char, char_traits<char> >; variable
85 _STLP_EXPORT_TEMPLATE_CLASS ostreambuf_iterator<wchar_t, char_traits<wchar_t> >; variable
92 iterator_category(const ostreambuf_iterator<_CharT, _Traits>&) argument
[all...]
/external/stlport/src/
H A Dnum_put.cpp169 template class _STLP_CLASS_DECLSPEC ostreambuf_iterator<char, char_traits<char> >; variable in typeref:class:_STLP_CLASS_DECLSPEC
171 template class num_put<char, ostreambuf_iterator<char, char_traits<char> > >;
173 template class ostreambuf_iterator<wchar_t, char_traits<wchar_t> >;
174 template class num_put<wchar_t, ostreambuf_iterator<wchar_t, char_traits<wchar_t> > >;

Completed in 1160 milliseconds