Home
last modified time | relevance | path

Searched refs:streambuf (Results 1 – 25 of 229) sorted by relevance

12345678910

/external/libcxx/test/std/input.output/stream.buffers/streambuf/
Dtypes.pass.cpp28 static_assert((std::is_same<std::streambuf::char_type, char>::value), ""); in main()
29 static_assert((std::is_same<std::streambuf::traits_type, std::char_traits<char> >::value), ""); in main()
30 …static_assert((std::is_same<std::streambuf::int_type, std::char_traits<char>::int_type>::value), "… in main()
31 …static_assert((std::is_same<std::streambuf::pos_type, std::char_traits<char>::pos_type>::value), "… in main()
32 …static_assert((std::is_same<std::streambuf::off_type, std::char_traits<char>::off_type>::value), "… in main()
/external/llvm-project/libcxx/test/std/input.output/stream.buffers/streambuf/
Dtypes.pass.cpp29 static_assert((std::is_same<std::streambuf::char_type, char>::value), ""); in main()
30 static_assert((std::is_same<std::streambuf::traits_type, std::char_traits<char> >::value), ""); in main()
31 …static_assert((std::is_same<std::streambuf::int_type, std::char_traits<char>::int_type>::value), "… in main()
32 …static_assert((std::is_same<std::streambuf::pos_type, std::char_traits<char>::pos_type>::value), "… in main()
33 …static_assert((std::is_same<std::streambuf::off_type, std::char_traits<char>::off_type>::value), "… in main()
/external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
Drdbuf_streambuf.pass.cpp25 std::streambuf* sb = (std::streambuf*)1; in main()
26 std::streambuf* sb2 = ios.rdbuf(sb); in main()
31 assert(sb2 == (std::streambuf*)1); in main()
Dset_rdbuf.pass.cpp23 : public std::streambuf
30 testios(std::streambuf* p) : std::ios(p) {} in testios()
31 void set_rdbuf(std::streambuf* x) {std::ios::set_rdbuf(x);} in set_rdbuf()
Drdbuf.pass.cpp27 std::streambuf* sb = (std::streambuf*)1; in main()
Dmove.pass.cpp25 : public std::streambuf
33 testios(std::streambuf* p) : std::ios(p) {} in testios()
/external/llvm-project/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
Drdbuf_streambuf.pass.cpp26 std::streambuf* sb = (std::streambuf*)1; in main()
27 std::streambuf* sb2 = ios.rdbuf(sb); in main()
32 assert(sb2 == (std::streambuf*)1); in main()
Dset_rdbuf.pass.cpp22 : public std::streambuf
29 testios(std::streambuf* p) : std::ios(p) {} in testios()
30 void set_rdbuf(std::streambuf* x) {std::ios::set_rdbuf(x);} in set_rdbuf()
Drdbuf.pass.cpp28 std::streambuf* sb = (std::streambuf*)1; in main()
Dmove.pass.cpp25 : public std::streambuf
33 testios(std::streambuf* p) : std::ios(p) {} in testios()
/external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.cons/
Dctor_streambuf.pass.cpp23 std::streambuf* sb = 0; in main()
36 std::streambuf* sb = (std::streambuf*)1; in main()
/external/llvm-project/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.cons/
Dctor_streambuf.pass.cpp24 std::streambuf* sb = 0; in main()
37 std::streambuf* sb = (std::streambuf*)1; in main()
/external/llvm-project/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
Dcopy.fail.cpp19 std::streambuf &get();
23 std::streambuf sb = get(); // expected-error {{calling a protected constructor}} in main()
/external/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
Dcopy.fail.cpp20 std::streambuf &get();
24 std::streambuf sb = get(); // expected-error {{calling a protected constructor}} in main()
/external/python/pybind11/include/pybind11/
Diostream.h24 class pythonbuf : public std::streambuf { in PYBIND11_NAMESPACE_BEGIN()
26 using traits_type = std::streambuf::traits_type; in PYBIND11_NAMESPACE_BEGIN()
115 std::streambuf *old; in PYBIND11_NAMESPACE_END()
/external/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
Dctor.pass.cpp29 static_assert(!std::is_convertible<std::streambuf*, B>::value, ""); in main()
30 static_assert( std::is_constructible<B, std::streambuf*>::value, ""); in main()
/external/llvm-project/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
Dctor.pass.cpp29 static_assert(!std::is_convertible<std::streambuf*, B>::value, ""); in main()
30 static_assert( std::is_constructible<B, std::streambuf*>::value, ""); in main()
/external/libcxx/include/
Diostream18 #include <streambuf>
39 #include <streambuf>
Dmodule.modulemap316 export streambuf
323 // FIXME: should re-export ios, streambuf?
370 // FIXME: should re-export ios, streambuf?
403 // FIXME: should re-export istream, ostream, ios, streambuf, string?
415 module streambuf {
416 header "streambuf"
/external/llvm-project/libcxx/include/
Diostream17 #include <streambuf>
38 #include <streambuf>
Dmodule.modulemap332 export streambuf
339 // FIXME: should re-export ios, streambuf?
395 // FIXME: should re-export ios, streambuf?
433 // FIXME: should re-export istream, ostream, ios, streambuf, string?
445 module streambuf {
446 header "streambuf"
/external/fmtlib/test/
Dostream-test.cc159 struct mock_streambuf : std::streambuf { in TEST()
165 } streambuf; in TEST() local
169 } os(streambuf); in TEST()
177 EXPECT_CALL(streambuf, xsputn(data, static_cast<std::streamsize>(n))) in TEST()
/external/llvm-project/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/
Dtypes.pass.cpp21 static_assert((std::is_base_of<std::streambuf, std::strstreambuf>::value), ""); in main()
/external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/
Dtypes.pass.cpp20 static_assert((std::is_base_of<std::streambuf, std::strstreambuf>::value), ""); in main()
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
Dios_base.pass.cpp32 std::istream is((std::streambuf*)0); in main()

12345678910