Searched refs:int_type (Results 76 - 100 of 104) sorted by relevance

12345

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_ios.h52 typedef typename _Traits::int_type int_type; typedef in class:basic_ios
110 static bool _STLP_CALL _S_eof(int_type __c) {
111 const int_type __eof = _Traits::eof();
H A D_ctraits_fns.h64 typename _Traits::int_type __val;
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {}
H A D_ostreambuf_iterator.h46 typedef typename _Traits::int_type int_type; typedef in class:ostreambuf_iterator
H A D_istream.c39 # define __BIS_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_istream<_CharT, _Traits>::int_type
147 typedef typename _Traits::int_type int_type;
152 int_type _M_val;
154 _Scan_for_int_val(int_type __val) : _M_val(__val) {}
171 const typename _Traits::int_type __eof = _Traits::eof();
317 typename _Traits::int_type __tmp = _Traits::eof();
340 typename _Traits::int_type __tmp = _Traits::eof();
369 typename _Traits::int_type __tmp = _Traits::eof();
400 int_type __
[all...]
H A D_istreambuf_iterator.h51 typedef typename _Traits::int_type int_type; typedef in class:istreambuf_iterator
92 int_type __c = _M_buf->sgetc();
H A D_istream.h75 typedef typename _Traits::int_type int_type; typedef in class:basic_istream
126 int_type peek();
129 int_type get();
151 _Self& ignore(streamsize __n, int_type __delim);
H A D_bitset.c188 static typename _Traits::int_type __eof = _Traits::eof();
190 typename _Traits::int_type __c1 = __buf->sbumpc();
H A D_fstream.c37 # define __BF_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_filebuf<_CharT, _Traits>::int_type
74 _STLP_TYPENAME_ON_RETURN_TYPE basic_filebuf<_CharT, _Traits>::int_type
157 basic_filebuf<_CharT, _Traits>::pbackfail(int_type __c) {
158 const int_type __eof = traits_type::eof();
208 basic_filebuf<_CharT, _Traits>::overflow(int_type __c) {
H A D_ostream.c120 typedef typename _StreamBuf::int_type int_type; typedef in struct:_SPutBackC
129 void guard(int_type c) {
139 int_type __c;
149 int_type __c;
H A D_sstream.c31 # define __BSB_int_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_stringbuf<_CharT, _Traits, _Alloc>::int_type
107 int_type __c = _Traits::to_int_type(*this->gptr());
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) {
142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/ext.manip/
H A Dput_money.pass.cpp35 virtual typename base::int_type
36 overflow(typename base::int_type __c = base::traits_type::eof())
H A Dput_time.pass.cpp35 virtual typename base::int_type
36 overflow(typename base::int_type __c = base::traits_type::eof())
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.unformatted/
H A Dget_streambuf.pass.cpp40 virtual typename base::int_type
41 overflow(typename base::int_type __c = base::traits_type::eof())
H A Dget_streambuf_chart.pass.cpp41 virtual typename base::int_type
42 overflow(typename base::int_type __c = base::traits_type::eof())
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Dbool.pass.cpp36 virtual typename base::int_type
37 overflow(typename base::int_type __c = base::traits_type::eof())
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
H A DCharT.pass.cpp37 virtual typename base::int_type
38 overflow(typename base::int_type __c = base::traits_type::eof())
H A DCharT_pointer.pass.cpp37 virtual typename base::int_type
38 overflow(typename base::int_type __c = base::traits_type::eof())
H A Dchar_to_wide.pass.cpp37 virtual typename base::int_type
38 overflow(typename base::int_type __c = base::traits_type::eof())
H A Dchar_to_wide_pointer.pass.cpp37 virtual typename base::int_type
38 overflow(typename base::int_type __c = base::traits_type::eof())
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
H A Dunderflow.pass.cpp12 // int_type underflow();
27 typedef typename base::int_type int_type; typedef in struct:test_buf
34 virtual int_type underflow() {return base::underflow();}
H A Doverflow.pass.cpp12 // int_type overflow(int_type c = traits::eof());
27 typedef typename base::int_type int_type; typedef in struct:test_buf
35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
/ndk/sources/cxx-stl/stlport/src/
H A Dstrstream.cpp116 strstreambuf::int_type strstreambuf::overflow(int_type c) {
156 strstreambuf::int_type strstreambuf::pbackfail(int_type c) {
176 strstreambuf::int_type strstreambuf::underflow() {
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
H A Doverflow.pass.cpp15 // int_type overflow(int_type c = traits::eof());
31 typename base::int_type
32 overflow(typename base::int_type c = base::type_traits::eof())
H A Dpbackfail.pass.cpp15 // int_type pbackfail(int_type c = traits::eof());
29 typename base::int_type
30 pbackfail(typename base::int_type c = base::type_traits::eof())
H A Dunderflow.pass.cpp15 // int_type underflow();
28 typename base::int_type underflow() {return base::underflow();}

Completed in 1312 milliseconds

12345