Home | History | Annotate | Download | only in gtest

Lines Matching defs:ss_

94   Message() : ss_(new ::std::stringstream) {
97 *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2);
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT
102 *ss_ << msg.GetString();
106 explicit Message(const char* str) : ss_(new ::std::stringstream) {
107 *ss_ << str;
121 ::GTestStreamToHelper(ss_.get(), val);
141 *ss_ << "(null)";
143 ::GTestStreamToHelper(ss_.get(), pointer);
156 *ss_ << val;
191 return internal::StringStreamToString(ss_.get());
204 *ss_ << "(null)";
206 ::GTestStreamToHelper(ss_.get(), pointer);
211 ::GTestStreamToHelper(ss_.get(), value);
216 const internal::scoped_ptr< ::std::stringstream> ss_;