/external/stlport/stlport/stl/ |
_stream_iterator.h | 58 // istream_iterator and ostream_iterator look very different if we're 70 class istream_iterator : public iterator<input_iterator_tag, _Tp , _Dist, class in inherits:iterator 77 class istream_iterator : public iterator<input_iterator_tag, _Tp , ptrdiff_t, 83 class istream_iterator : public iterator<input_iterator_tag, _Tp, _Dist , 96 typedef istream_iterator< __ISI_TMPL_ARGUMENTS > _Self; 108 istream_iterator() : _M_stream(0), _M_ok(false), _M_read_done(true) {} function in class:istream_iterator 109 istream_iterator(istream_type& __s) : _M_stream(&__s), _M_ok(false), _M_read_done(false) {} function in class:istream_iterator 212 operator==(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x, 213 const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) 219 operator!=(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x [all...] |
/external/stlport/test/unit/ |
istmit_test.cpp | 41 typedef istream_iterator<char> istream_char_ite; 42 typedef istream_iterator<int> istream_int_ite; 43 typedef istream_iterator<string> istream_string_ite; 45 typedef istream_iterator<char, ptrdiff_t> istream_char_ite; 46 typedef istream_iterator<int, ptrdiff_t> istream_int_ite; 47 typedef istream_iterator<string, ptrdiff_t> istream_string_ite; 86 //through a istream_iterator. 117 * returned by copy_n but is lost as this istream_iterator is not used. 118 * copy_n and istream_iterator can only be combined safely if: 119 * - you always extract the same type of istream_iterator and you always reus [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
mistream.h | 123 /// \class istream_iterator 129 class istream_iterator { class in namespace:ustl 137 istream_iterator (void) : m_pis (NULL), m_v() {} function in class:ustl::istream_iterator 138 explicit istream_iterator (Stream& is) : m_pis (&is), m_v() { Read(); } function in class:ustl::istream_iterator 139 istream_iterator (const istream_iterator& i) : m_pis (i.m_pis), m_v (i.m_v) {} function in class:ustl::istream_iterator 142 inline istream_iterator& operator++ (void) { Read(); return (*this); } 143 inline istream_iterator& operator-- (void) { m_pis->seek (m_pis->pos() - 2 * stream_size_of(m_v)); return (operator++()); } 144 inline istream_iterator operator++ (int) { istream_iterator old (*this); operator++(); return (old); [all...] |
sostream.cpp | 9 #include "mistream.h" // for istream_iterator, referenced in utf8.h
|
/external/stlport/stlport/stl/config/ |
user_config.h | 247 * queue<>, priority_queue<>, stack<>, istream_iterator<>
|
/external/icu4c/tools/tzcode/ |
tz2icu.cpp | [all...] |
/external/stlport/etc/ |
ChangeLog-5.1 | [all...] |