Searched refs:stdio_filebuf (Results 1 - 25 of 63) sorted by relevance

123

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/stdio_filebuf/requirements/
H A Dexplicit_instantiation.cc20 // stdio_filebuf.h
22 #include <ext/stdio_filebuf.h>
32 template class stdio_filebuf<type_t, std::char_traits<type_t> >;
33 template class stdio_filebuf<__gnu_test::pod_char, std::char_traits<__gnu_test::pod_char> >;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/ext/stdio_filebuf/char/
H A D1.cc21 // stdio_filebuf.h
23 #include <ext/stdio_filebuf.h>
33 template class stdio_filebuf<type_t, std::char_traits<type_t> >;
34 template class stdio_filebuf<__gnu_test::pod_char, std::char_traits<__gnu_test::pod_char> >;
H A D10063-1.cc21 #include <ext/stdio_filebuf.h>
33 __gnu_cxx::stdio_filebuf<char> sbuf(file, ios_base::out);
H A D2.cc21 // stdio_filebuf.h
23 #include <ext/stdio_filebuf.h>
39 stdio_filebuf<char> sbuf(file, ios_base::out, 2);
H A D10063-2.cc25 #include <ext/stdio_filebuf.h>
45 __gnu_cxx::stdio_filebuf<char> sbuf(file, ios_base::in);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/src/
H A Dext-inst.cc30 #include <ext/stdio_filebuf.h>
48 template class stdio_filebuf<char>;
60 template class stdio_filebuf<wchar_t>;
H A Dios_init.cc35 #include <ext/stdio_filebuf.h>
47 extern stdio_filebuf<char> buf_cout;
48 extern stdio_filebuf<char> buf_cin;
49 extern stdio_filebuf<char> buf_cerr;
56 extern stdio_filebuf<wchar_t> buf_wcout;
57 extern stdio_filebuf<wchar_t> buf_wcin;
58 extern stdio_filebuf<wchar_t> buf_wcerr;
178 new (&buf_cout) stdio_filebuf<char>(stdout, ios_base::out);
179 new (&buf_cin) stdio_filebuf<char>(stdin, ios_base::in);
180 new (&buf_cerr) stdio_filebuf<cha
[all...]
H A Dglobals_io.cc28 #include <ext/stdio_filebuf.h>
86 typedef char fake_filebuf[sizeof(stdio_filebuf<char>)]
87 __attribute__ ((aligned(__alignof__(stdio_filebuf<char>))));
99 typedef char fake_wfilebuf[sizeof(stdio_filebuf<wchar_t>)]
100 __attribute__ ((aligned(__alignof__(stdio_filebuf<wchar_t>))));
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/src/
H A Dext-inst.cc35 #include <ext/stdio_filebuf.h>
55 template class stdio_filebuf<char>;
67 template class stdio_filebuf<wchar_t>;
H A Dios_init.cc40 #include <ext/stdio_filebuf.h>
52 extern stdio_filebuf<char> buf_cout;
53 extern stdio_filebuf<char> buf_cin;
54 extern stdio_filebuf<char> buf_cerr;
61 extern stdio_filebuf<wchar_t> buf_wcout;
62 extern stdio_filebuf<wchar_t> buf_wcin;
63 extern stdio_filebuf<wchar_t> buf_wcerr;
179 new (&buf_cout) stdio_filebuf<char>(stdout, ios_base::out);
180 new (&buf_cin) stdio_filebuf<char>(stdin, ios_base::in);
181 new (&buf_cerr) stdio_filebuf<cha
[all...]
H A Dglobals_io.cc33 #include <ext/stdio_filebuf.h>
90 typedef char fake_filebuf[sizeof(stdio_filebuf<char>)]
91 __attribute__ ((aligned(__alignof__(stdio_filebuf<char>))));
103 typedef char fake_wfilebuf[sizeof(stdio_filebuf<wchar_t>)]
104 __attribute__ ((aligned(__alignof__(stdio_filebuf<wchar_t>))));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dstdio_filebuf.h26 /** @file ext/stdio_filebuf.h
46 * stdio_filebuf<char>.
49 class stdio_filebuf : public std::basic_filebuf<_CharT, _Traits> class in inherits:std::basic_filebuf
64 stdio_filebuf() : std::basic_filebuf<_CharT, _Traits>() {} function in class:stdio_filebuf
73 * closed when the stdio_filebuf is closed/destroyed.
75 stdio_filebuf(int __fd, std::ios_base::openmode __mode,
86 * stdio_filebuf is closed/destroyed.
88 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
96 ~stdio_filebuf();
121 stdio_filebuf<_Char
126 stdio_filebuf(int __fd, std::ios_base::openmode __mode, size_t __size) function in class:stdio_filebuf
142 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, function in class:stdio_filebuf
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/ext/
H A Dstdio_filebuf.h30 /** @file ext/stdio_filebuf.h
49 * stdio_filebuf<char>.
52 class stdio_filebuf : public std::basic_filebuf<_CharT, _Traits> class in namespace:__gnu_cxx
67 stdio_filebuf() : std::basic_filebuf<_CharT, _Traits>() {} function in class:__gnu_cxx::stdio_filebuf
76 * closed when the stdio_filebuf is closed/destroyed.
78 stdio_filebuf(int __fd, std::ios_base::openmode __mode,
89 * stdio_filebuf is closed/destroyed.
91 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
99 ~stdio_filebuf();
124 stdio_filebuf<_Char
129 stdio_filebuf(int __fd, std::ios_base::openmode __mode, size_t __size) function in class:__gnu_cxx::stdio_filebuf
145 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, function in class:__gnu_cxx::stdio_filebuf
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_filebuf/open/char/
H A D2.cc33 #include <ext/stdio_filebuf.h>
45 __gnu_cxx::stdio_filebuf<char> fb(first_file, std::ios_base::in);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/stdio_filebuf/char/
H A D10063-1.cc24 #include <ext/stdio_filebuf.h>
36 __gnu_cxx::stdio_filebuf<char> sbuf(file, ios_base::out);
H A D2.cc21 // stdio_filebuf.h
25 #include <ext/stdio_filebuf.h>
42 stdio_filebuf<char> sbuf(file, ios_base::out, 2);
H A D10063-2.cc26 #include <ext/stdio_filebuf.h>
46 __gnu_cxx::stdio_filebuf<char> sbuf(file, ios_base::in);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_filebuf/open/char/
H A D2.cc32 #include <ext/stdio_filebuf.h>
44 __gnu_cxx::stdio_filebuf<char> fb(first_file, std::ios_base::in);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_filebuf/close/char/
H A D2.cc28 #include <ext/stdio_filebuf.h>
54 __gnu_cxx::stdio_filebuf<char> fb(f2, std::ios_base::in, 512);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_filebuf/close/char/
H A D2.cc27 #include <ext/stdio_filebuf.h>
53 __gnu_cxx::stdio_filebuf<char> fb(f2, std::ios_base::in, 512);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/ext/
H A Dheaders.cc43 #include <ext/stdio_filebuf.h>
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/precompiled/
H A Dextc++.h54 #include <ext/stdio_filebuf.h>
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/ext/
H A Dheaders.cc50 #include <ext/stdio_filebuf.h>
/netbsd-6-1-5-RELEASE/gnu/lib/libstdc++-v3_4/arch/alpha/
H A Ddefs.mk25 G_ext_headers=algorithm array_allocator.h bitmap_allocator.h codecvt_specializations.h debug_allocator.h stdio_filebuf.h stdio_sync_filebuf.h functional hash_map hash_set hash_fun.h hashtable.h iterator malloc_allocator.h memory mt_allocator.h new_allocator.h numeric pod_char_traits.h pool_allocator.h rb_tree rope ropeimpl.h slist typelist.h rc_string_base.h sso_string_base.h vstring.h vstring.tcc vstring_fwd.h vstring_util.h
/netbsd-6-1-5-RELEASE/gnu/lib/libstdc++-v3_4/arch/arm/
H A Ddefs.mk25 G_ext_headers=algorithm array_allocator.h bitmap_allocator.h codecvt_specializations.h debug_allocator.h stdio_filebuf.h stdio_sync_filebuf.h functional hash_map hash_set hash_fun.h hashtable.h iterator malloc_allocator.h memory mt_allocator.h new_allocator.h numeric pod_char_traits.h pool_allocator.h rb_tree rope ropeimpl.h slist typelist.h rc_string_base.h sso_string_base.h vstring.h vstring.tcc vstring_fwd.h vstring_util.h

Completed in 176 milliseconds

123