HomeSort by relevance Sort by last modified time
    Searched full:traits_type (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/stlport/test/unit/
full_streambuf.h 16 typedef _Base::traits_type traits_type; typedef in class:full_streambuf
33 return traits_type::eof();
36 _buf += traits_type::to_char_type(c);
  /ndk/tests/device/test-gnustl-full/unit/
full_streambuf.h 16 typedef _Base::traits_type traits_type; typedef in class:full_streambuf
33 return traits_type::eof();
36 _buf += traits_type::to_char_type(c);
  /ndk/tests/device/test-stlport/unit/
full_streambuf.h 16 typedef _Base::traits_type traits_type; typedef in class:full_streambuf
33 return traits_type::eof();
36 _buf += traits_type::to_char_type(c);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
stdio_sync_filebuf.h 52 typedef _Traits traits_type; typedef in class:stdio_sync_filebuf
53 typedef typename traits_type::int_type int_type;
54 typedef typename traits_type::pos_type pos_type;
55 typedef typename traits_type::off_type off_type;
68 : _M_file(__f), _M_unget_buf(traits_type::eof())
107 pbackfail(int_type __c = traits_type::eof())
110 const int_type __eof = traits_type::eof();
113 if (traits_type::eq_int_type(__c, __eof)) // unget
115 if (!traits_type::eq_int_type(_M_unget_buf, __eof))
132 overflow(int_type __c = traits_type::eof()
    [all...]
enc_filebuf.h 44 typedef encoding_char_traits<_CharT> traits_type; typedef in class:enc_filebuf
45 typedef typename traits_type::state_type state_type;
46 typedef typename traits_type::pos_type pos_type;
vstring_util.h 53 typedef _Traits traits_type; typedef in struct:__vstring_utility
100 // traits_type::copy/move/assign.
105 traits_type::assign(*__d, *__s);
107 traits_type::copy(__d, __s, __n);
114 traits_type::assign(*__d, *__s);
116 traits_type::move(__d, __s, __n);
123 traits_type::assign(*__d, __c);
125 traits_type::assign(__d, __n, __c);
135 traits_type::assign(*__p, *__k1); // These types are off.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
streambuf_iterator.h 54 typedef _Traits traits_type; typedef in class:istreambuf_iterator
82 // returns traits_type::eof()), the iterator becomes equal to
92 : _M_sbuf(0), _M_c(traits_type::eof()) { }
96 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
100 : _M_sbuf(__s), _M_c(traits_type::eof()) { }
115 return traits_type::to_char_type(_M_get());
128 _M_c = traits_type::eof();
145 _M_c = traits_type::eof();
162 const int_type __eof = traits_type::eof();
166 if (!traits_type::eq_int_type(_M_c, __eof)
207 typedef _Traits traits_type; typedef in class:ostreambuf_iterator
321 typedef typename __is_iterator_type::traits_type traits_type; typedef
356 typedef typename __is_iterator_type::traits_type traits_type; typedef
    [all...]
istream.tcc 56 const __int_type __eof = traits_type::eof();
61 while (!traits_type::eq_int_type(__c, __eof)
63 traits_type::to_char_type(__c)))
69 if (traits_type::eq_int_type(__c, __eof))
188 const int_type __eof = traits_type::eof();
199 if (!traits_type::eq_int_type(__c, __eof))
233 if (!traits_type::eq_int_type(__cb, traits_type::eof()))
236 __c = traits_type::to_char_type(__cb);
268 const int_type __idelim = traits_type::to_int_type(__delim)
    [all...]
streambuf.tcc 55 traits_type::copy(__s, this->gptr(), __len);
64 if (!traits_type::eq_int_type(__c, traits_type::eof()))
66 traits_type::assign(*__s++, traits_type::to_char_type(__c));
89 traits_type::copy(this->pptr(), __s, __len);
97 int_type __c = this->overflow(traits_type::to_int_type(*__s));
98 if (!traits_type::eq_int_type(__c, traits_type::eof()))
sstream.tcc 48 int_type __ret = traits_type::eof();
53 const bool __testeof = traits_type::eq_int_type(__c, __ret);
56 const bool __testeq = traits_type::eq(traits_type::
64 *this->gptr() = traits_type::to_char_type(__c);
71 __ret = traits_type::not_eof(__c);
84 return traits_type::eof();
86 const bool __testeof = traits_type::eq_int_type(__c, traits_type::eof());
88 return traits_type::not_eof(__c)
    [all...]
fstream.tcc 206 int_type __ret = traits_type::eof();
216 return traits_type::to_int_type(*this->gptr());
305 traits_type::copy(this->eback(),
328 __ret = traits_type::to_int_type(*this->gptr());
358 int_type __ret = traits_type::eof();
365 const bool __testeof = traits_type::eq_int_type(__i, __ret);
370 __tmp = traits_type::to_int_type(*this->gptr());
375 if (traits_type::eq_int_type(__tmp, __ret))
384 // traits_type::eof().
390 if (!__testeof && traits_type::eq_int_type(__i, __tmp)
    [all...]
  /external/astl/src/
streambuf.cpp 50 traits_type::copy(this->pptr(), str, len);
61 int_type c = this->overflow(traits_type::to_int_type(*str));
62 if (!traits_type::eq_int_type(c, traits_type::eof())) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
quicksort.h 59 typedef std::iterator_traits<RandomAccessIterator> traits_type; typedef
60 typedef typename traits_type::value_type value_type;
61 typedef typename traits_type::difference_type difference_type;
106 typedef std::iterator_traits<RandomAccessIterator> traits_type; typedef
107 typedef typename traits_type::value_type value_type;
108 typedef typename traits_type::difference_type difference_type;
164 typedef std::iterator_traits<RandomAccessIterator> traits_type; typedef
165 typedef typename traits_type::value_type value_type;
166 typedef typename traits_type::difference_type difference_type;
algo.h 147 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
148 typedef typename traits_type::value_type value_type;
819 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
848 typedef iterator_traits<ForwardIterator> traits_type; typedef
883 typedef iterator_traits<ForwardIterator> traits_type; typedef
903 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
940 typedef iterator_traits<InputIterator> traits_type; typedef
950 typedef iterator_traits<InputIterator> traits_type; typedef
971 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1009 typedef iterator_traits<InputIterator> traits_type; typedef
1019 typedef iterator_traits<InputIterator> traits_type; typedef
1422 typedef iterator_traits<ForwardIterator> traits_type; typedef
1433 typedef iterator_traits<ForwardIterator> traits_type; typedef
1705 typedef iterator_traits<ForwardIterator> traits_type; typedef
1734 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1753 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1765 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1776 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1787 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1798 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1809 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1820 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1831 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1841 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1872 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1891 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1903 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1914 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1925 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1936 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1947 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
1958 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
2135 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
2176 typedef iterator_traits<RandomAccessIterator> traits_type; typedef
2256 typedef iterator_traits<ForwardIterator> traits_type; typedef
2266 typedef iterator_traits<ForwardIterator> traits_type; typedef
2347 typedef iterator_traits<ForwardIterator> traits_type; typedef
2357 typedef iterator_traits<ForwardIterator> traits_type; typedef
    [all...]
partial_sum.h 95 typedef std::iterator_traits<InputIterator> traits_type; typedef
96 typedef typename traits_type::value_type value_type;
97 typedef typename traits_type::difference_type difference_type;
201 typedef std::iterator_traits<InputIterator> traits_type; typedef
202 typedef typename traits_type::value_type value_type;
203 typedef typename traits_type::difference_type difference_type;
  /external/stlport/src/
stdio_streambuf.cpp 168 return traits_type::eof();
177 return c != EOF ? c : traits_type::eof();
181 if (c != traits_type::eof()) {
183 return result != EOF ? result : traits_type::eof();
188 return traits_type::not_eof(c);
191 return traits_type::eof();
205 if (c == traits_type::eof()) {
212 return traits_type::not_eof(c);
214 return traits_type::eof();
219 return traits_type::not_eof(c)
    [all...]
fstream.cpp 39 typedef char_traits<char> traits_type; typedef
40 typedef traits_type::int_type int_type;
44 return traits_type::eof();
49 int_type __c = traits_type::to_int_type(*__this->gptr());
81 return traits_type::to_int_type(*__this->gptr());
  /ndk/sources/cxx-stl/stlport/src/
stdio_streambuf.cpp 168 return traits_type::eof();
177 return c != EOF ? c : traits_type::eof();
181 if (c != traits_type::eof()) {
183 return result != EOF ? result : traits_type::eof();
188 return traits_type::not_eof(c);
191 return traits_type::eof();
205 if (c == traits_type::eof()) {
212 return traits_type::not_eof(c);
214 return traits_type::eof();
219 return traits_type::not_eof(c)
    [all...]
fstream.cpp 39 typedef char_traits<char> traits_type; typedef
40 typedef traits_type::int_type int_type;
44 return traits_type::eof();
49 int_type __c = traits_type::to_int_type(*__this->gptr());
81 return traits_type::to_int_type(*__this->gptr());
  /external/zlib/contrib/iostream3/
zfstream.cc 189 return traits_type::to_int_type(*(this->gptr()));
193 return traits_type::eof();
203 return traits_type::eof();
209 return traits_type::to_int_type(*(this->gptr()));
221 return traits_type::eof();
223 if (!traits_type::eq_int_type(c, traits_type::eof()))
225 *(this->pptr()) = traits_type::to_char_type(c);
235 return traits_type::eof();
238 return traits_type::eof()
    [all...]
  /external/astl/include/
streambuf 51 typedef char_traits<char> traits_type;
52 typedef traits_type::char_type char_type;
53 typedef traits_type::int_type int_type;
73 return traits_type::to_int_type(c);
78 * would return traits_type::eof().
136 virtual int_type overflow(int_type /* c */ = traits_type::eof())
137 { return traits_type::eof(); }
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
streambuf 124 typedef _Traits traits_type;
125 typedef typename traits_type::int_type int_type;
126 typedef typename traits_type::pos_type pos_type;
127 typedef typename traits_type::off_type off_type;
132 typedef basic_streambuf<char_type, traits_type> __streambuf_type;
135 friend class basic_ios<char_type, traits_type>;
136 friend class basic_istream<char_type, traits_type>;
137 friend class basic_ostream<char_type, traits_type>;
138 friend class istreambuf_iterator<char_type, traits_type>;
139 friend class ostreambuf_iterator<char_type, traits_type>;
    [all...]
fstream 61 // Requirements on traits_type, specific to this class:
62 // traits_type::pos_type must be fpos<traits_type::state_type>
63 // traits_type::off_type must be streamoff
64 // traits_type::state_type must be Assignable and DefaultConstructible,
65 // and traits_type::state_type() must be the initial state for codecvt.
72 typedef _Traits traits_type;
73 typedef typename traits_type::int_type int_type;
74 typedef typename traits_type::pos_type pos_type;
75 typedef typename traits_type::off_type off_type
    [all...]
  /external/stlport/stlport/stl/
_ostreambuf_iterator.h 45 typedef _Traits traits_type; typedef in class:ostreambuf_iterator
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
63 traits_type::eof());
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 45 typedef _Traits traits_type; typedef in class:ostreambuf_iterator
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
63 traits_type::eof());

Completed in 408 milliseconds

1 2 3 4