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

  /src/external/bsd/zstd/dist/contrib/pzstd/
ErrorHolder.h 19 class ErrorHolder {
24 ErrorHolder() : error_(false) {}
50 ~ErrorHolder() {
Pzstd.h 11 #include "ErrorHolder.h"
89 ErrorHolder errorHolder;
Pzstd.cpp 93 if (!state.errorHolder.hasError()) {
112 ErrorHolder &errorHolder) {
121 errorHolder.setError("Output file is a directory -- ignored");
126 if (!errorHolder.check(inputFd != nullptr, "Failed to open input file")) {
145 state.errorHolder.setError("Output file exists");
154 state.errorHolder.setError("Not overwritten");
160 if (!state.errorHolder.check(
173 if (state.errorHolder.hasError()) {
176 state.errorHolder.getError().c_str())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Testing/Support/
Error.cpp 15 llvm::detail::ErrorHolder llvm::detail::TakeError(llvm::Error Err) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Testing/Support/
Error.h 21 ErrorHolder TakeError(Error Err);
85 class ErrorMatchesMono : public testing::MatcherInterface<const ErrorHolder &> {
90 bool MatchAndExplain(const ErrorHolder &Holder,
133 : public testing::MatcherInterface<const ErrorHolder &> {
139 bool MatchAndExplain(const ErrorHolder &Holder,
177 testing::Matcher<const detail::ErrorHolder &> Failed() {
182 testing::Matcher<const detail::ErrorHolder &> Failed(M Matcher) {
188 testing::Matcher<const detail::ErrorHolder &> FailedWithMessage(M... Matcher) {
195 testing::Matcher<const detail::ErrorHolder &> FailedWithMessageArray(M Matcher) {
SupportHelpers.h 25 struct ErrorHolder {
31 template <typename T> struct ExpectedHolder : public ErrorHolder {
32 ExpectedHolder(ErrorHolder Err, Expected<T> &Exp)
33 : ErrorHolder(std::move(Err)), Exp(Exp) {}
38 inline void PrintTo(const ErrorHolder &Err, std::ostream *Out) {
57 PrintTo(static_cast<const ErrorHolder &>(Item), Out);

Completed in 18 milliseconds