Searched refs:oss (Results 101 - 125 of 233) sorted by relevance

12345678910

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_stringstream/str/char/
H A D4.cc33 std::ostringstream oss; local
35 oss.str(str00);
36 oss << "cortona";
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_stringstream/str/wchar_t/
H A D4.cc31 std::wostringstream oss; local
33 oss.str(str00);
34 oss << L"cortona";
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_stringstream/str/char/
H A D4.cc34 std::ostringstream oss; local
36 oss.str(str00);
37 oss << "cortona";
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_stringstream/str/wchar_t/
H A D4.cc32 std::wostringstream oss; local
34 oss.str(str00);
35 oss << L"cortona";
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/manipulators/adjustfield/wchar_t/
H A D1.cc61 std::wostringstream oss; local
62 oss << true << L" " << false << std::endl;
63 oss << std::boolalpha;
64 oss << true << L" " << false << std::endl;
66 oss << L":" << std::setw(6) << std::internal << true << L":" << std::endl;
67 oss << L":" << std::setw(6) << std::left << true << L":" << std::endl;
68 oss << L":" << std::setw(6) << std::right << false << L":" << std::endl;
69 oss << std::noboolalpha;
70 oss << L":" << std::setw(3) << std::internal << true << L":" << std::endl;
71 oss <<
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/manipulators/adjustfield/wchar_t/
H A D1.cc70 std::wostringstream oss; local
71 oss << true << L" " << false << std::endl;
72 oss << std::boolalpha;
73 oss << true << L" " << false << std::endl;
75 oss << L":" << std::setw(6) << std::internal << true << L":" << std::endl;
76 oss << L":" << std::setw(6) << std::left << true << L":" << std::endl;
77 oss << L":" << std::setw(6) << std::right << false << L":" << std::endl;
78 oss << std::noboolalpha;
79 oss << L":" << std::setw(3) << std::internal << true << L":" << std::endl;
80 oss <<
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/
H A D5.cc47 wostringstream oss; local
48 oss.imbue(loc_c);
49 const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
52 oss.str(empty);
53 iterator_type os_it05 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
55 wstring result5 = oss.str();
57 iterator_type os_it06 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
60 wstring result6 = oss
[all...]
H A D17038.cc45 wostringstream oss; local
46 oss.imbue(loc_in);
48 use_facet<time_put<wchar_t> >(oss.getloc());
50 iterator_type os_it01 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'c');
51 wstring result1 = oss.str();
H A D6.cc49 wostringstream oss; local
50 oss.imbue(loc_de);
51 const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
53 iterator_type os_it07 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
55 wstring result7 = oss.str();
57 iterator_type os_it08 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
59 wstring result8 = oss.str();
H A D7.cc49 wostringstream oss; local
50 oss.imbue(loc_hk);
51 const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
53 iterator_type os_it09 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
55 wstring result9 = oss.str();
57 iterator_type os_it10 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
59 wstring result10 = oss.str();
H A D8.cc49 wostringstream oss; local
50 oss.imbue(loc_fr);
51 const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
52 iterator_type os_it11 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
54 wstring result11 = oss.str();
56 iterator_type os_it12 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
58 wstring result12 = oss.str();
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_character/wchar_t/
H A D7.cc58 wostringstream oss; local
59 oss.imbue(locale(locale::classic(), new gnu_ctype));
66 oss << buffer;
68 wstring str = oss.str();
69 wchar_t c1 = oss.widen(buffer[0]);
71 wchar_t c2 = oss.widen(buffer[1]);
79 oss.str(wstring());
80 oss << 'b';
82 str = oss.str();
83 wchar_t c3 = oss
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/time_put/put/wchar_t/
H A D5.cc45 wostringstream oss; local
46 oss.imbue(loc_c);
47 const time_put<wchar_t>& tim_put = use_facet<time_put<wchar_t> >(oss.getloc());
50 oss.str(empty);
51 iterator_type os_it05 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
53 wstring result5 = oss.str();
55 iterator_type os_it06 = tim_put.put(oss.rdbuf(), oss, L'*', &time1,
57 wstring result6 = oss
[all...]
H A D17038.cc46 wostringstream oss; local
47 oss.imbue(loc_in);
49 use_facet<time_put<wchar_t> >(oss.getloc());
51 iterator_type os_it01 = tim_put.put(oss.rdbuf(), oss, L'*', &time1, 'c');
52 wstring result1 = oss.str();
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_character/wchar_t/
H A D7.cc59 wostringstream oss; local
60 oss.imbue(locale(locale::classic(), new gnu_ctype));
67 oss << buffer;
69 wstring str = oss.str();
70 wchar_t c1 = oss.widen(buffer[0]);
72 wchar_t c2 = oss.widen(buffer[1]);
80 oss.str(wstring());
81 oss << 'b';
83 str = oss.str();
84 wchar_t c3 = oss
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/time_put/put/char/
H A D17038.cc45 ostringstream oss; local
46 oss.imbue(loc_in);
48 use_facet<time_put<char> >(oss.getloc());
50 iterator_type os_it01 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'c');
51 string result1 = oss.str();
H A D6.cc49 ostringstream oss; local
50 oss.imbue(loc_de);
51 const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
53 iterator_type os_it07 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
55 string result7 = oss.str();
57 iterator_type os_it08 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
60 string result8 = oss.str();
H A D7.cc49 ostringstream oss; local
50 oss.imbue(loc_hk);
51 const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
53 iterator_type os_it09 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
55 string result9 = oss.str();
57 iterator_type os_it10 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
60 string result10 = oss.str();
H A D8.cc49 ostringstream oss; local
50 oss.imbue(loc_fr);
51 const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
52 iterator_type os_it11 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
54 string result11 = oss.str();
56 iterator_type os_it12 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
59 string result12 = oss.str();
/netbsd-6-1-5-RELEASE/lib/libc/compat/sys/
H A Dcompat_sigaltstack.c51 stack_t nss, oss; local
58 error = __sigaltstack14(&nss, &oss);
61 ooss->ss_sp = oss.ss_sp;
62 if (oss.ss_size > INT_MAX)
65 ooss->ss_size = oss.ss_size;
66 ooss->ss_flags = oss.ss_flags;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/time_put/put/char/
H A D17038.cc46 ostringstream oss; local
47 oss.imbue(loc_in);
49 use_facet<time_put<char> >(oss.getloc());
51 iterator_type os_it01 = tim_put.put(oss.rdbuf(), oss, '*', &time1, 'c');
52 string result1 = oss.str();
H A D6.cc49 ostringstream oss; local
50 oss.imbue(loc_de);
51 const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
53 iterator_type os_it07 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
55 string result7 = oss.str();
57 iterator_type os_it08 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
59 string result8 = oss.str();
H A D7.cc49 ostringstream oss; local
50 oss.imbue(loc_hk);
51 const time_put<char>& tim_put = use_facet<time_put<char> >(oss.getloc());
53 iterator_type os_it09 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
55 string result9 = oss.str();
57 iterator_type os_it10 = tim_put.put(oss.rdbuf(), oss, '*', &time1,
59 string result10 = oss.str();
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/performance/27_io/
H A Dstringbuf_overflow.cc33 ostringstream oss; local
34 oss << "size = " << n;
42 report_performance(__FILE__, oss.str(), time, resource);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/performance/27_io/
H A Dstringbuf_overflow.cc42 ostringstream oss; local
43 oss << "size = " << n;
51 report_performance(__FILE__, oss.str(), time, resource);

Completed in 283 milliseconds

12345678910