Home | History | Annotate | Download | only in istringstream.assign

Lines Matching refs:ss

25         std::istringstream ss;
26 ss = std::move(ss0);
27 assert(ss.rdbuf() != 0);
28 assert(ss.good());
29 assert(ss.str() == " 123 456");
31 ss >> i;
33 ss >> i;
56 std::wistringstream ss;
57 ss = std::move(ss0);
58 assert(ss.rdbuf() != 0);
59 assert(ss.good());
60 assert(ss.str() == L" 123 456");
62 ss >> i;
64 ss >> i;