Searched refs:oss02 (Results 1 - 10 of 10) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_character/char/
H A D3.cc44 std::ostringstream oss02; local
45 oss02.width(5);
46 oss02.fill('0');
47 oss02.flags(std::ios_base::right);
48 oss02 << str02;
49 tmp = oss02.str();
H A D2.cc45 std::ostringstream oss02; local
46 oss02.width(5);
47 oss02.fill('0');
48 oss02.flags(std::ios_base::left);
49 oss02 << str02;
50 tmp = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/endl/char/
H A D1.cc35 std::ostringstream oss02; local
44 oss02 << std::endl;
45 str05 = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/endl/wchar_t/
H A D1.cc33 std::wostringstream oss02; local
42 oss02 << std::endl;
43 str05 = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/ends/wchar_t/
H A D1.cc33 std::wostringstream oss02; local
41 oss02 << std::ends;
42 str05 = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/ends/char/
H A D1.cc35 std::ostringstream oss02; local
43 oss02 << std::ends;
44 str05 = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/flush/char/
H A D1.cc35 std::ostringstream oss02; local
43 oss02.flush();
44 str05 = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/flush/wchar_t/
H A D1.cc33 std::wostringstream oss02; local
41 oss02.flush();
42 str05 = oss02.str();
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_character/wchar_t/
H A D2.cc43 std::wostringstream oss02; local
44 oss02.width(5);
45 oss02.fill(L'0');
46 oss02.flags(std::ios_base::left);
47 oss02 << str02;
48 tmp = oss02.str();
H A D3.cc42 std::wostringstream oss02; local
43 oss02.width(5);
44 oss02.fill(L'0');
45 oss02.flags(std::ios_base::right);
46 oss02 << str02;
47 tmp = oss02.str();

Completed in 86 milliseconds