Lines Matching refs:str
56 // Construct an instance and copy str into the underlying buffer
59 explicit basic_stringbuf(const string& str,
70 const string& str() const;
72 // Clear the current buffer then copy the content of str into
75 // @param str The string to use as a new sequence.
76 void str(const string & str);
84 virtual streamsize xsputn(const char_type* str, streamsize num);
99 explicit stringstream(const string& str,
104 const string& str() const { return mStringBuf.str(); }
105 void str(const string & str) { mStringBuf.str(str); }