Lines Matching refs:str
54 stringbuf(const string &str, int which=ios::in|ios::out)
60 stream_len = str.size();
62 str.copy(stream, stream_len);
74 str() const
83 str(const string& str)
86 stream_len = str.size();
88 str.copy(stream, stream_len);
244 istringstream(const string& str, int which=ios::in)
245 : istream(&sb), sb(str, which | ios::in)
255 str() const
257 return rdbuf()->str();
260 str(const string& s)
262 rdbuf()->str(s);
282 ostringstream(const string& str, int which=ios::out)
283 : ostream(&sb), sb(str, which | ios::out)
293 str() const
295 return rdbuf()->str();
298 void str(const string& s)
300 rdbuf()->str(s);
320 stringstream(const string& str, int which=ios::out|ios::in)
321 : iostream(&sb), sb(str, which)
331 str() const
333 return rdbuf()->str();
337 str(const string& s)
339 rdbuf()->str(s);