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

12345

/external/libcxx/test/std/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/std/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/libcxx/test/std/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/libcxx/test/std/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/std/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/std/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 = traits_type::eof())
H A Dsungetc.pass.cpp15 // int_type sungetc();
35 int_type pbackfail(int_type = traits_type::eof())
/external/libchrome/base/strings/
H A Dstring16.h69 typedef int int_type;
71 // int_type needs to be able to hold each possible value of char_type, and in
73 static_assert(sizeof(int_type) > sizeof(char_type),
116 static int_type not_eof(const int_type& c) {
120 static char_type to_char_type(const int_type& c) {
124 static int_type to_int_type(const char_type& c) {
125 return int_type(c);
128 static bool eq_int_type(const int_type& c1, const int_type
[all...]
/external/libcxx/test/std/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/std/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/std/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/libcxx/test/support/
H A Dconstexpr_char_traits.hpp23 typedef int int_type; typedef in struct:constexpr_char_traits
44 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT
47 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT
50 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT
51 {return int_type(__c);}
53 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT
56 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT
57 {return int_type(EO
[all...]
/external/libcxx/test/std/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/std/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/std/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/std/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/std/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/std/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/std/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/std/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), "");
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.put/
H A Dsputc.pass.cpp15 // int_type sputc(char_type c);
39 int_type overflow(int_type = traits_type::eof())
/external/libcxx/test/std/input.output/string.streams/istringstream/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
32 static_assert((std::is_same<std::basic_istringstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/std/input.output/string.streams/ostringstream/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
32 static_assert((std::is_same<std::basic_ostringstream<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/std/input.output/string.streams/stringbuf/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
32 static_assert((std::is_same<std::basic_stringbuf<char>::int_type, std::char_traits<char>::int_type>::value), "");
/external/libcxx/test/std/input.output/string.streams/stringstream/
H A Dtypes.pass.cpp19 // typedef typename traits_type::int_type int_type;
32 static_assert((std::is_same<std::basic_stringstream<char>::int_type, std::char_traits<char>::int_type>::value), "");

Completed in 347 milliseconds

12345