Home | History | Annotate | Download | only in string.io

Lines Matching defs:out

26         std::ostringstream out;
28 out << s;
29 assert(out.good());
30 assert(s == out.str());
33 std::ostringstream out;
35 out.width(12);
36 out << s;
37 assert(out.good());
38 assert(" " + s == out.str());
41 std::wostringstream out;
43 out << s;
44 assert(out.good());
45 assert(s == out.str());
48 std::wostringstream out;
50 out.width(12);
51 out << s;
52 assert(out.good());
53 assert(L" " + s == out.str());
58 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
60 out << s;
61 assert(out.good());
62 assert(s == out.str());
66 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
68 out.width(12);
69 out << s;
70 assert(out.good());
71 assert(" " + s == out.str());
75 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
77 out << s;
78 assert(out.good());
79 assert(s == out.str());
83 std::basic_ostringstream<S::value_type, S::traits_type, S::allocator_type> out;
85 out.width(12);
86 out << s;
87 assert(out.good());
88 assert(L" " + s == out.str());