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

Lines Matching defs:buf

24         std::stringbuf buf;
25 buf = move(buf1);
26 assert(buf.str() == "testing");
30 std::stringbuf buf;
31 buf = move(buf1);
32 assert(buf.str() == "testing");
36 std::stringbuf buf;
37 buf = move(buf1);
38 assert(buf.str() == "testing");
42 std::wstringbuf buf;
43 buf = move(buf1);
44 assert(buf.str() == L"testing");
48 std::wstringbuf buf;
49 buf = move(buf1);
50 assert(buf.str() == L"testing");
54 std::wstringbuf buf;
55 buf = move(buf1);
56 assert(buf.str() == L"testing");