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

Lines Matching defs:out

27         std::ostringstream out;
29 out << sv;
30 assert(out.good());
31 assert(sv == out.str());
34 std::ostringstream out;
37 out.width(12);
38 out << sv;
39 assert(out.good());
40 assert(" " + s == out.str());
43 std::wostringstream out;
45 out << sv;
46 assert(out.good());
47 assert(sv == out.str());
50 std::wostringstream out;
53 out.width(12);
54 out << sv;
55 assert(out.good());
56 assert(L" " + s == out.str());