Home | History | Annotate | Download | only in gtest

Lines Matching defs:ss_

96   Message(const Message& msg) : ss_(new ::std::stringstream) {  // NOLINT
97 *ss_ << msg.GetString();
101 explicit Message(const char* str) : ss_(new ::std::stringstream) {
102 *ss_ << str;
131 *ss_ << val;
151 *ss_ << "(null)";
153 *ss_ << pointer;
166 *ss_ << val;
208 *ss_ << "(null)";
210 *ss_ << pointer;
219 *ss_ << value;
224 const internal::scoped_ptr< ::std::stringstream> ss_;