Searched defs:Message (Results 1 - 3 of 3) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/
H A Dgtest-message.h34 // This header file defines the Message class.
54 // See Message& operator<<(...) below for why.
59 // The Message class works like an ostream repeater.
63 // 1. You stream a bunch of values to a Message object.
65 // 2. Then you stream the Message object to an ostream.
66 // This causes the text in the Message to be streamed
71 // testing::Message foo;
77 // Message is not intended to be inherited from. In particular, its
82 // latter (it causes an access violation if you do). The Message
85 class GTEST_API_ Message { class in namespace:testing
96 Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT function in class:testing::Message
101 explicit Message(const char* str) : ss_(new ::std::stringstream) { function in class:testing::Message
[all...]
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest_unittest.cc223 using testing::Message;
1648 (Message() << name << "=" << value).GetString());
1656 _putenv((Message() << name << "=" << value).GetString().c_str());
2129 Message msg;
2184 Message msg;
2202 Message msg;
2387 AssertionFailure(Message() << "Failure");
2392 AssertionFailure(Message() << "Failure");
2398 AssertionFailure(Message() << "Failure");
2405 AssertionFailure(Message() << "Failur
6303 class Message {}; class in namespace:my_namespace::testing
[all...]
/ndk/sources/third_party/googletest/googletest/src/
H A Dgtest.cc354 // Message assignment, for assertion streaming support.
355 void AssertHelper::operator=(const Message& message) const {
614 Message msg;
872 // encoding, and streams the result to the given Message object.
874 Message* msg) {
891 // Constructs an empty Message.
896 Message::Message() : ss_(new ::std::stringstream) { function in class:testing::Message
898 // a double to a Message.
902 // These two overloads allow streaming a wide C string to a Message
[all...]

Completed in 173 milliseconds