/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 | __string | 24 typedef ... int_type; 41 static constexpr int_type not_eof(int_type c) noexcept; 42 static constexpr char_type to_char_type(int_type c) noexcept; 43 static constexpr int_type to_int_type(char_type c) noexcept; 44 static constexpr bool eq_int_type(int_type c1, int_type c2) noexcept; 45 static constexpr int_type eof() noexcept; 76 typedef int int_type; 100 static inline _LIBCPP_CONSTEXPR int_type not_eof(int_type __c) _NOEXCEPT 102 static inline _LIBCPP_CONSTEXPR char_type to_char_type(int_type __c) _NOEXCEPT 104 static inline _LIBCPP_CONSTEXPR int_type to_int_type(char_type __c) _NOEXCEPT [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; 231 virtual int_type underflow(); 232 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; 220 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; 249 int_type get(); 253 int_type __ch = get(); 277 basic_istream& ignore(streamsize __n = 1, int_type __dlm = traits_type::eof()); 278 int_type peek(); [all …]
|
/external/libchrome/base/strings/ |
D | string16.h | 69 typedef int int_type; typedef 73 static_assert(sizeof(int_type) > sizeof(char_type), 116 static int_type not_eof(const int_type& c) { in not_eof() 120 static char_type to_char_type(const int_type& c) { in to_char_type() 124 static int_type to_int_type(const char_type& c) { in to_int_type() 125 return int_type(c); in to_int_type() 128 static bool eq_int_type(const int_type& c1, const int_type& c2) { in eq_int_type() 132 static int_type eof() { in eof() 133 return static_cast<int_type>(EOF); in eof()
|
/external/libcxx/test/support/ |
D | constexpr_char_traits.hpp | 23 typedef int int_type; typedef 44 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT in not_eof() 47 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT in to_char_type() 50 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT in to_int_type() 51 {return int_type(__c);} in to_int_type() 53 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT in eq_int_type() 56 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT in eof() 57 {return int_type(EOF);} in eof()
|
/external/libcxx/src/ |
D | strstream.cpp | 152 strstreambuf::int_type 153 strstreambuf::overflow(int_type __c) in overflow() 156 return int_type(0); in overflow() 160 return int_type(EOF); in overflow() 171 return int_type(EOF); in overflow() 193 return int_type(static_cast<unsigned char>(__c)); in overflow() 196 strstreambuf::int_type 197 strstreambuf::pbackfail(int_type __c) in pbackfail() 204 return int_type(0); in pbackfail() 220 strstreambuf::int_type [all …]
|
/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/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 | underflow.pass.cpp | 30 typedef typename base::int_type int_type; typedef 37 virtual int_type underflow() {return base::underflow();} in underflow() 123 assert(f.sbumpc() == static_cast<Traits::int_type>(-1)); in main()
|
D | overflow.pass.cpp | 29 typedef typename base::int_type int_type; typedef 37 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);} in overflow()
|
/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/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 48 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), ""); in main() 63 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), ""); in main()
|
/external/fmtlib/fmt/ |
D | ostream.h | 23 typedef typename std::basic_streambuf<Char>::int_type int_type; typedef 34 int_type overflow(int_type ch = traits_type::eof()) {
|
/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/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/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/ |
D | sungetc.pass.cpp | 35 int_type pbackfail(int_type = traits_type::eof()) in pbackfail()
|
D | sputbackc.pass.cpp | 35 int_type pbackfail(int_type = traits_type::eof()) in pbackfail()
|