Lines Matching refs:Message
82 class GTEST_API_ Message {
94 Message() : ss_(new ::std::stringstream) { in Message() function
101 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT in Message() function
106 explicit Message(const char* str) : ss_(new ::std::stringstream) { in Message() function
113 inline Message& operator <<(const T& value) {
120 inline Message& operator <<(const T& val) {
139 inline Message& operator <<(T* const& pointer) { // NOLINT
155 Message& operator <<(BasicNarrowIoManip val) {
161 Message& operator <<(bool b) {
167 Message& operator <<(const wchar_t* wide_c_str) {
170 Message& operator <<(wchar_t* wide_c_str) {
177 Message& operator <<(const ::std::wstring& wstr);
183 Message& operator <<(const ::wstring& wstr);
220 void operator=(const Message&);
224 inline std::ostream& operator <<(std::ostream& os, const Message& sb) {