Home | History | Annotate | Download | only in depr.strstreambuf.cons

Lines Matching defs:buf

22         char buf[] = "abcd";
23 std::strstreambuf sb(buf, sizeof(buf));
32 char buf[] = "abcd";
33 std::strstreambuf sb(buf, 0);
41 char buf[] = "abcd";
42 std::strstreambuf sb(buf, sizeof(buf), buf);
58 char buf[] = "abcd";
59 std::strstreambuf sb(buf, 0, buf);
73 char buf[10] = "abcd";
74 int s = std::strlen(buf);
75 std::strstreambuf sb(buf, sizeof(buf)-s, buf + s);