HomeSort by relevance Sort by last modified time
    Searched defs:ostream_iterator (Results 1 - 2 of 2) sorted by null

  /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...]

Completed in 180 milliseconds