/external/libcxx/include/ |
D | streambuf | 27 typedef typename traits_type::int_type int_type; 48 int_type snextc(); 49 int_type sbumpc(); 50 int_type sgetc(); 54 int_type sputbackc(char_type c); 55 int_type sungetc(); 58 int_type sputc(char_type c); 96 virtual int_type underflow(); 97 virtual int_type uflow(); 100 virtual int_type pbackfail(int_type c = traits_type::eof()); [all …]
|
D | __std_stream | 39 typedef typename traits_type::int_type int_type; 47 virtual int_type underflow(); 48 virtual int_type uflow(); 49 virtual int_type pbackfail(int_type __c = traits_type::eof()); 58 int_type __last_consumed_; 65 int_type __getchar(bool __consume); 90 typename __stdinbuf<_CharT>::int_type 97 typename __stdinbuf<_CharT>::int_type 104 typename __stdinbuf<_CharT>::int_type 109 int_type __result = __last_consumed_; [all …]
|
D | strstream | 43 virtual int_type overflow (int_type c = EOF); 44 virtual int_type pbackfail(int_type c = EOF); 45 virtual int_type underflow(); 106 typedef char_traits<char>::int_type int_type; 170 virtual int_type overflow (int_type __c = EOF); 171 virtual int_type pbackfail(int_type __c = EOF); 172 virtual int_type underflow(); 343 typedef char_traits<char>::int_type int_type;
|
D | sstream | 24 typedef typename traits_type::int_type int_type; 45 virtual int_type underflow(); 46 virtual int_type pbackfail(int_type c = traits_type::eof()); 47 virtual int_type overflow (int_type c = traits_type::eof()); 69 typedef typename traits_type::int_type int_type; 105 typedef typename traits_type::int_type int_type; 141 typedef typename traits_type::int_type int_type; 195 typedef typename traits_type::int_type int_type; 229 virtual int_type underflow(); 230 virtual int_type pbackfail(int_type __c = traits_type::eof()); [all …]
|
D | fstream | 24 typedef typename traits_type::int_type int_type; 46 virtual int_type underflow(); 47 virtual int_type uflow(); 48 virtual int_type pbackfail(int_type c = traits_type::eof()); 49 virtual int_type overflow (int_type c = traits_type::eof()); 73 typedef typename traits_type::int_type int_type; 106 typedef typename traits_type::int_type int_type; 139 typedef typename traits_type::int_type int_type; 189 typedef typename traits_type::int_type int_type; 215 virtual int_type underflow(); [all …]
|
D | istream | 25 typedef typename traits_type::int_type int_type; 63 int_type get(); 73 basic_istream& ignore(streamsize n = 1, int_type delim = traits_type::eof()); 74 int_type peek(); 129 typedef typename traits_type::int_type int_type; 182 typedef typename traits_type::int_type int_type; 238 int_type get(); 248 basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof()); 249 int_type peek(); 773 typename _Traits::int_type __i = __is.rdbuf()->sgetc(); [all …]
|
/external/libcxx/test/support/ |
D | constexpr_char_traits.hpp | 22 typedef int int_type; typedef 43 static _LIBCPP_CONSTEXPR int_type not_eof(int_type __c) _NOEXCEPT in not_eof() 46 static _LIBCPP_CONSTEXPR char_type to_char_type(int_type __c) _NOEXCEPT in to_char_type() 49 static _LIBCPP_CONSTEXPR int_type to_int_type(char_type __c) _NOEXCEPT in to_int_type() 50 {return int_type(__c);} in to_int_type() 52 static _LIBCPP_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) _NOEXCEPT in eq_int_type() 55 static _LIBCPP_CONSTEXPR int_type eof() _NOEXCEPT in eof() 56 {return int_type(EOF);} in eof()
|
/external/libcxx/src/ |
D | strstream.cpp | 150 strstreambuf::int_type 151 strstreambuf::overflow(int_type __c) in overflow() 154 return int_type(0); in overflow() 158 return int_type(EOF); in overflow() 169 return int_type(EOF); in overflow() 189 return int_type(static_cast<unsigned char>(__c)); in overflow() 192 strstreambuf::int_type 193 strstreambuf::pbackfail(int_type __c) in pbackfail() 200 return int_type(0); in pbackfail() 216 strstreambuf::int_type [all …]
|
/external/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/ |
D | pbackfail.pass.cpp | 25 typedef typename base::int_type int_type; typedef 33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} in pbackfail()
|
D | overflow.pass.cpp | 27 typedef typename base::int_type int_type; typedef 35 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} in overflow()
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/ |
D | types.pass.cpp | 30 …static_assert((std::is_same<std::streambuf::int_type, std::char_traits<char>::int_type>::value), "… in main() 36 …static_assert((std::is_same<std::wstreambuf::int_type, std::char_traits<wchar_t>::int_type>::value… in main()
|
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 38 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), ""); in main() 48 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), ""); in main()
|
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/ |
D | pbackfail.pass.cpp | 28 typedef base::int_type int_type; typedef 38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} in pbackfail()
|
D | overflow.pass.cpp | 28 typedef base::int_type int_type; typedef 38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} in overflow()
|
D | underflow.pass.cpp | 28 typedef base::int_type int_type; typedef 38 virtual int_type underflow() {return base::underflow();} in underflow()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_const.h | 139 LLVMTypeRef int_type; in lp_build_const_int_pointer() local 143 int_type = LLVMIntTypeInContext(gallivm->context, 8 * sizeof(void *)); in lp_build_const_int_pointer() 144 v = LLVMConstInt(int_type, (uintptr_t) ptr, 0); in lp_build_const_int_pointer() 146 LLVMPointerType(int_type, 0), in lp_build_const_int_pointer()
|
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.string/ |
D | types.pass.cpp | 33 … static_assert((std::is_same<myconv::int_type, std::char_traits<wchar_t>::int_type>::value), ""); in main()
|
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/ |
D | custom_alloc.pass.cpp | 38 virtual int_type overflow(int_type c) in overflow()
|
/external/lldb/test/functionalities/data-formatter/rdar-10887661/ |
D | fooSynthProvider.py | 5 self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt) 12 child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
|
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstream/ |
D | types.pass.cpp | 29 …static_assert((std::is_same<std::strstream::int_type, std::char_traits<char>::int_type>::value), "… in main()
|
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/ |
D | fooSynthProvider.py | 5 self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt) 12 child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
|
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/ |
D | sungetc.pass.cpp | 35 int_type pbackfail(int_type c = traits_type::eof()) in pbackfail()
|
D | sputbackc.pass.cpp | 35 int_type pbackfail(int_type c = traits_type::eof()) in pbackfail()
|
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream/ |
D | types.pass.cpp | 32 …static_assert((std::is_same<std::basic_ostream<char>::int_type, std::char_traits<char>::int_type>:… in main()
|
/external/libcxx/test/std/input.output/iostreams.base/ios/ |
D | types.pass.cpp | 30 …static_assert((std::is_same<std::basic_ios<char>::int_type, std::char_traits<char>::int_type>::val… in main()
|