/external/stlport/test/unit/ |
ostmit_test.cpp | 40 ostream_iterator<char> iter(os); 46 ostream_iterator<int> iter2(os);
|
slist_test.cpp | 70 ostream_iterator<char> o(os,"");
|
/external/stlport/stlport/stl/ |
_stream_iterator.h | 58 // istream_iterator and ostream_iterator look very different if we're 162 class ostream_iterator: public iterator<output_iterator_tag, void, void, void, void> { class in inherits:iterator 166 typedef ostream_iterator<_TpP> _Self; 168 typedef ostream_iterator<_TpP, _CharT, _Traits> _Self; 177 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {} function in class:ostream_iterator 178 ostream_iterator(ostream_type& __s, const _CharT* __c) function in class:ostream_iterator 197 iterator_category(const ostream_iterator<_TpP>&) { return output_iterator_tag(); } 201 iterator_category(const ostream_iterator<_TpP, _CharT, _Traits>&) { return output_iterator_tag(); }
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
mostream.h | 101 /// \class ostream_iterator mostream.h ustl.h 107 class ostream_iterator { class in namespace:ustl 115 inline explicit ostream_iterator (Stream& os) function in class:ustl::ostream_iterator 117 inline ostream_iterator (const ostream_iterator& iter) function in class:ustl::ostream_iterator 120 inline ostream_iterator& operator= (const T& v) 122 inline ostream_iterator& operator* (void) { return (*this); } 123 inline ostream_iterator& operator++ (void) { return (*this); } 124 inline ostream_iterator operator++ (int) { return (*this); } 125 inline ostream_iterator& operator+= (size_type n) { m_Os.skip (n); return (*this); [all...] |
/external/stlport/test/eh/ |
LeakCheck.h | 172 EH_STD::ostream_iterator<value_type> o(EH_STD::cerr, " ");
|
/external/stlport/etc/ |
ChangeLog-4.0 | 58 _stream_iterator.h : ostream_iterator changed to inherit from iterator<>
|