Searched refs:int_type (Results 1 - 25 of 151) sorted by relevance

1234567

/external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
H A Deof.pass.cpp14 // static constexpr int_type eof();
22 std::char_traits<char16_t>::int_type i = std::char_traits<char16_t>::eof();
/external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
H A Deof.pass.cpp14 // static constexpr int_type eof();
22 std::char_traits<char32_t>::int_type i = std::char_traits<char32_t>::eof();
/external/stlport/test/unit/
H A Dfull_streambuf.h15 typedef _Base::int_type int_type; typedef in class:full_streambuf
26 int_type overflow(int_type c) {
/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/
H A Dtypes.pass.cpp21 // typedef typename wide_string::traits_type::int_type int_type;
33 static_assert((std::is_same<myconv::int_type, std::char_traits<wchar_t>::int_type>::value), "");
/external/stlport/src/
H A Dstdio_streambuf.h80 int_type underflow();
81 int_type uflow();
82 virtual int_type pbackfail(int_type c = traits_type::eof());
92 int_type overflow(int_type c = traits_type::eof());
/external/chromium_org/base/strings/
H A Dstring16.h63 typedef int int_type;
65 // int_type needs to be able to hold each possible value of char_type, and in
67 COMPILE_ASSERT(sizeof(int_type) > sizeof(char_type), unexpected_type_width);
97 static char_type* move(char_type* s1, const char_type* s2, int_type n) {
109 static int_type not_eof(const int_type& c) {
113 static char_type to_char_type(const int_type& c) {
117 static int_type to_int_type(const char_type& c) {
118 return int_type(c);
121 static bool eq_int_type(const int_type
[all...]
/external/libcxx/test/depr/depr.str.strstreams/depr.strstream/
H A Dtypes.pass.cpp18 // typedef char_traits<char>::int_type int_type;
29 static_assert((std::is_same<std::strstream::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
H A Dcustom_alloc.pass.cpp38 virtual int_type overflow(int_type c)
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
H A Dsputbackc.pass.cpp15 // int_type sputbackc(char_type c);
35 int_type pbackfail(int_type c = traits_type::eof())
H A Dsungetc.pass.cpp15 // int_type sungetc();
35 int_type pbackfail(int_type c = traits_type::eof())
/external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
H A DfooSynthProvider.py5 self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt)
12 child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
/external/lldb/test/functionalities/data-formatter/rdar-10887661/
H A DfooSynthProvider.py5 self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt)
12 child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
H A Dpbackfail.pass.cpp12 // int_type pbackfail(int_type c = traits::eof());
25 typedef typename base::int_type int_type; typedef in struct:test_buf
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
/external/libcxx/test/input.output/stream.buffers/streambuf/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
30 static_assert((std::is_same<std::streambuf::int_type, std::char_traits<char>::int_type>::value), "");
36 static_assert((std::is_same<std::wstreambuf::int_type, std::char_traits<wchar_t>::int_type>::value), "");
/external/libcxx/test/iterators/stream.iterators/istreambuf.iterator/
H A Dtypes.pass.cpp21 // typedef typename traits::int_type int_type;
38 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), "");
48 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), "");
/external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dpbackfail.pass.cpp14 // int_type pbackfail(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
/external/stlport/stlport/stl/
H A D_streambuf.h54 typedef typename _Traits::int_type int_type; typedef in class:basic_streambuf
170 virtual int_type underflow();
174 virtual int_type uflow();
179 virtual int_type pbackfail(int_type = traits_type::eof());
194 virtual int_type overflow(int_type = traits_type::eof());
198 int_type sputc(char_type __c) {
212 int_type _M_snextc_au
[all...]
/external/libcxx/test/input.output/file.streams/fstreams/filebuf/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
31 static_assert((std::is_same<std::basic_filebuf<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/file.streams/fstreams/fstream/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
31 static_assert((std::is_same<std::basic_fstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/file.streams/fstreams/ifstream/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
31 static_assert((std::is_same<std::basic_ifstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/file.streams/fstreams/ofstream/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
31 static_assert((std::is_same<std::basic_ofstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/
H A Dtypes.pass.cpp21 // typedef typename traits_type::int_type int_type;
34 static_assert((std::is_same<std::basic_iostream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/iostream.format/input.streams/istream/
H A Dtypes.pass.cpp20 // typedef typename traits_type::int_type int_type;
32 static_assert((std::is_same<std::basic_istream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/iostream.format/output.streams/ostream/
H A Dtypes.pass.cpp20 // typedef typename traits_type::int_type int_type;
32 static_assert((std::is_same<std::basic_ostream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/input.output/iostreams.base/ios/
H A Dtypes.pass.cpp17 // typedef typename traits::int_type int_type;
30 static_assert((std::is_same<std::basic_ios<char>::int_type, std::char_traits<char>::int_type>::value), "");

Completed in 4211 milliseconds

1234567