Home | History | Annotate | Download | only in gtest

Lines Matching refs:ss_

8587   Message() : ss_(new ::std::stringstream) {
8590 *ss_ << std::setprecision(std::numeric_limits<double>::digits10 + 2);
8594 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT
8595 *ss_ << msg.GetString();
8599 explicit Message(const char* str) : ss_(new ::std::stringstream) {
8600 *ss_ << str;
8614 ::GTestStreamToHelper(ss_.get(), val);
8634 *ss_ << "(null)";
8636 ::GTestStreamToHelper(ss_.get(), pointer);
8649 *ss_ << val;
8684 return internal::StringStreamToString(ss_.get());
8697 *ss_ << "(null)";
8699 ::GTestStreamToHelper(ss_.get(), pointer);
8704 ::GTestStreamToHelper(ss_.get(), value);
8709 const internal::scoped_ptr< ::std::stringstream> ss_;