Home
last modified time | relevance | path

Searched refs:message_ (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest-test-part.h68 message_(a_message) { in TestPartResult()
88 const char* message() const { return message_.c_str(); } in message()
116 std::string message_; // The test failure message. variable
Dgtest.h275 return message_.get() != NULL ? message_->c_str() : ""; in message()
298 if (message_.get() == NULL) in AppendMessage()
299 message_.reset(new ::std::string); in AppendMessage()
300 message_->append(a_message.GetString().c_str()); in AppendMessage()
309 internal::scoped_ptr< ::std::string> message_; variable
/ndk/sources/cxx-stl/gabi++/src/
Dcxxabi_vec.cc99 scoped_catcher(const char* message) : message_(message) {} in scoped_catcher()
102 if (message_) in ~scoped_catcher()
103 __gabixx::__fatal_error(message_); in ~scoped_catcher()
107 message_ = 0; in release()
111 const char* message_; member in __anonc22251360111::scoped_catcher
/ndk/sources/third_party/googletest/googletest/src/
Dgtest.cc939 message_(other.message_.get() != NULL ? in AssertionResult()
940 new ::std::string(*other.message_) : in AssertionResult()
947 if (message_.get() != NULL) in operator !()
948 negation << *message_; in operator !()