Home
last modified time | relevance | path

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

/netbsd-src/external/bsd/kyua-cli/dist/utils/process/
H A Dexceptions.cpp57 process::system_error::system_error(const std::string& message_, in system_error() argument
59 error(F("%s: %s") % message_ % strerror(errno_)), in system_error()
82 process::timeout_error::timeout_error(const std::string& message_) : in timeout_error() argument
83 error(message_) in timeout_error()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-test-part.h69 message_(a_message) {} in TestPartResult()
88 const char* message() const { return message_.c_str(); } in message()
119 std::string message_; // The test failure message. variable
H A Dgtest.h322 return message_.get() != nullptr ? message_->c_str() : ""; in message()
344 if (message_.get() == nullptr) message_.reset(new ::std::string); in AppendMessage()
345 message_->append(a_message.GetString().c_str()); in AppendMessage()
357 std::unique_ptr< ::std::string> message_; variable
/netbsd-src/external/bsd/kyua-cli/dist/utils/signals/
H A Dexceptions.cpp83 signals::system_error::system_error(const std::string& message_, in system_error() argument
85 error(F("%s: %s") % message_ % strerror(errno_)), in system_error()
/netbsd-src/external/bsd/kyua-cli/dist/utils/sqlite/
H A Dexceptions.cpp61 const std::string& message_) : in api_error() argument
62 error(message_), in api_error()
/netbsd-src/external/bsd/kyua-cli/dist/utils/fs/
H A Dexceptions.cpp127 fs::system_error::system_error(const std::string& message_, const int errno_) : in system_error() argument
128 error(F("%s: %s") % message_ % std::strerror(errno_)), in system_error()
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Dscript.h415 : check_(check), message_(message, messagelen) in Script_assertion()
430 std::string message_; variable
H A Dexpression.cc949 : Unary_expression(arg), message_(message, length) in Assert_expression()
957 gold_error("%s", this->message_.c_str()); in value()
966 fprintf(f, ", %s)", this->message_.c_str()); in print()
970 std::string message_; member in gold::Assert_expression
H A Dscript.cc1080 gold_error("%s", this->message_.c_str()); in check()
1090 fprintf(f, ", \"%s\")\n", this->message_.c_str()); in print()
/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Dscript.h415 : check_(check), message_(message, messagelen) in Script_assertion()
430 std::string message_; variable
H A Dexpression.cc949 : Unary_expression(arg), message_(message, length) in Assert_expression()
957 gold_error("%s", this->message_.c_str()); in value()
966 fprintf(f, ", %s)", this->message_.c_str()); in print()
970 std::string message_; member in gold::Assert_expression
H A Dscript.cc1080 gold_error("%s", this->message_.c_str()); in check()
1090 fprintf(f, ", \"%s\")\n", this->message_.c_str()); in print()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest.cc998 message_(other.message_.get() != nullptr in AssertionResult()
999 ? new ::std::string(*other.message_) in AssertionResult()
1006 swap(message_, other.message_); in swap()
1012 if (message_.get() != nullptr) negation << *message_; in operator !()