HomeSort by: relevance | last modified time | path
    Searched refs:message_ (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/kyua-cli/dist/utils/process/
exceptions.cpp 55 /// \param message_ The message describing what caused the error.
57 process::system_error::system_error(const std::string& message_,
59 error(F("%s: %s") % message_ % strerror(errno_)),
81 /// \param message_ The message describing what caused the error.
82 process::timeout_error::timeout_error(const std::string& message_) :
83 error(message_)
  /src/external/bsd/zstd/dist/contrib/pzstd/
ErrorHolder.h 21 std::string message_; member in class:pzstd::ErrorHolder
34 message_ = std::move(message);
47 return std::move(message_);
  /src/external/bsd/kyua-cli/dist/utils/signals/
exceptions.cpp 81 /// \param message_ The message describing what caused the error.
83 signals::system_error::system_error(const std::string& message_,
85 error(F("%s: %s") % message_ % strerror(errno_)),
  /src/external/bsd/kyua-cli/dist/utils/sqlite/
exceptions.cpp 59 /// \param message_ The plain-text error message provided by SQLite.
61 const std::string& message_) :
62 error(message_),
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-test-part.h 69 message_(a_message) {}
88 const char* message() const { return message_.c_str(); }
119 std::string message_; // The test failure message. member in class:testing::TestPartResult
gtest.h 322 return message_.get() != nullptr ? message_->c_str() : "";
342 // Appends the contents of message to message_.
344 if (message_.get() == nullptr) message_.reset(new ::std::string);
345 message_->append(a_message.GetString().c_str());
357 std::unique_ptr< ::std::string> message_; member in class:testing::AssertionResult
  /src/external/bsd/kyua-cli/dist/utils/fs/
exceptions.cpp 125 /// \param message_ The message describing what caused the error.
127 fs::system_error::system_error(const std::string& message_, const int errno_) :
128 error(F("%s: %s") % message_ % std::strerror(errno_)),
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest.cc 998 message_(other.message_.get() != nullptr
999 ? new ::std::string(*other.message_)
1006 swap(message_, other.message_);
1012 if (message_.get() != nullptr) negation << *message_; local

Completed in 63 milliseconds