/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-result.h | 78 error_(std::move(other.error_)) {} in move() 80 explicit Result(WasmError error) : error_(std::move(error)) {} in Result() 85 error_ = std::move(other.error_); 89 bool ok() const { return error_.empty(); } in ok() 90 bool failed() const { return error_.has_error(); } in failed() 91 const WasmError& error() const& { return error_; } in error() 92 WasmError&& error() && { return std::move(error_); } in error() 112 WasmError error_; member in v8::internal::wasm::Result [all...] |
H A D | init-expr-interface.h | 78 bool runtime_error() { return error_ != nullptr; } in runtime_error() 79 const char* runtime_error_msg() { return error_; } in runtime_error_msg() 84 const char* error_ = nullptr; member
|
H A D | decoder.h | 245 error_ = {0, "validation failed"}; in MarkError() 301 TRACE("Result error: %s\n", error_.message().c_str()); in toResult() 302 return Result<U>{error_}; in toResult() 315 error_ = {}; in Reset() 322 bool ok() const { return error_.empty(); } in ok() 325 const WasmError& error() const { return error_; } in error() 361 WasmError error_; variable 371 error_ = {offset, {buffer.begin(), static_cast<size_t>(len)}}; in verrorf()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
H A D | spy_hash_state.h | 43 SpyHashStateImpl() : error_(std::make_shared<absl::optional<std::string>>()) { in SpyHashStateImpl() 57 error_ = other.error_; 66 error_ = other.error_; in SpyHashStateImpl() 83 *s.error_ = "AbslHashValue should not be invoked directly."; in combine() 85 *s.error_ = "Used moved-from instance of the hash state object."; in combine() 174 return *error_; in error() 190 std::shared_ptr<absl::optional<std::string>> error_; member in absl::hash_internal::SpyHashStateImpl
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | diagnostic.cpp | 78 error_(other.error_) { in DiagnosticStream() 80 other.error_ = SPV_FAILED_MATCH; in DiagnosticStream() 88 if (error_ != SPV_FAILED_MATCH && consumer_ != nullptr) { in ~DiagnosticStream() 90 switch (error_) { in ~DiagnosticStream()
|
H A D | diagnostic.h | 37 error_(error) {} in DiagnosticStream() 57 operator spv_result_t() { return error_; } in operator spv_result_t() 64 spv_result_t error_; member in spvtools::DiagnosticStream
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | diagnostic.cpp | 78 error_(other.error_) { in DiagnosticStream() 80 other.error_ = SPV_FAILED_MATCH; in DiagnosticStream() 88 if (error_ != SPV_FAILED_MATCH && consumer_ != nullptr) { in ~DiagnosticStream() 90 switch (error_) { in ~DiagnosticStream()
|
H A D | diagnostic.h | 37 error_(error) {} in DiagnosticStream() 57 operator spv_result_t() { return error_; } in operator spv_result_t() 64 spv_result_t error_; member in spvtools::DiagnosticStream
|
/third_party/spirv-tools/source/ |
H A D | diagnostic.cpp | 78 error_(other.error_) { in DiagnosticStream() 80 other.error_ = SPV_FAILED_MATCH; in DiagnosticStream() 88 if (error_ != SPV_FAILED_MATCH && consumer_ != nullptr) { in ~DiagnosticStream() 90 switch (error_) { in ~DiagnosticStream()
|
H A D | diagnostic.h | 37 error_(error) {} in DiagnosticStream() 57 operator spv_result_t() { return error_; } in operator spv_result_t() 64 spv_result_t error_; member in spvtools::DiagnosticStream
|
/third_party/skia/third_party/externals/tint/src/writer/ |
H A D | writer.h | 29 const std::string& error() const { return error_; } in error() 38 void set_error(const std::string& msg) { error_ = msg; } in set_error() 41 std::string error_; member in tint::writer::Writer
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/ |
H A D | checker.h | 118 return ConvParser(format, args_, error_, arg_position_, is_positional_); in SetFormat() 122 return ConvParser(format_, args, error_, arg_position_, is_positional_); in SetArgs() 126 return ConvParser(format_, args_, error_ || error, arg_position_, in SetError() 131 return ConvParser(format_, args_, error_, arg_position, is_positional_); in SetArgPosition() 135 // `error_` is set if there is no next arg or if it doesn't match `conv`. 141 // `error_` is set if `i.value` is not a valid argument or if it doesn't 158 // If it is '*', we verify that it matches `args_`. `error_` is set if it 173 // If it is '*', we verify that it matches `args_`. `error_` is set if it 193 // `error_` is set if it doesn't match. 206 error_(erro in ConvParser() 240 bool error_; global() member in absl::str_format_internal::ConvParser [all...] |
H A D | output.cc | 43 while (!v.empty() && !error_) { in Write() 56 error_ = errno; in Write() 60 error_ = EBADF; in Write()
|
H A D | output.h | 61 int error() const { return error_; } in error() 65 int error_ = 0; member in absl::str_format_internal::FILERawSink
|
/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | bit_writer_utils.c | 32 bw->error_ = 1; in BitWriterResize() 42 bw->error_ = 1; in BitWriterResize() 169 bw->error_ = 0; in VP8BitWriterInit() 214 bw->error_ = 1; in VP8LBitWriterResize() 224 bw->error_ = 1; in VP8LBitWriterResize() 250 dst->error_ = src->error_; in VP8LBitWriterClone() 268 bw->error_ = bw_init->error_; in VP8LBitWriterReset() 284 bw->error_ in VP8LPutBitsFlushBits() [all...] |
H A D | bit_writer_utils.h | 35 int error_; // true in case of error member 97 // the state of error_. A value of 1 indicates that a memory allocation 100 int error_; member 132 // VP8LBitWriter's error_ flag is set in case of memory allocation error.
|
/third_party/gn/src/util/test/ |
H A D | test.h | 40 : condition_(condition), error_(error) { in TestResult() 46 const char* error() const { return error_; } in error() 50 const char* error_; member in testing::TestResult 71 : file_(file), line_(line), error_(test_result.error()) {} in AssertHelper() 74 printf("\n*** FAILURE %s:%d: %s\n", file_, line_, error_); in operator =() 80 const char* error_; member in testing::AssertHelper
|
/third_party/alsa-utils/alsactl/ |
H A D | alsactl.h | 24 void error_(const char *fcn, long line, const char *fmt, ...); 31 #define error(...) do { error_(__func__, __LINE__, __VA_ARGS__); } while (0) 36 #define error(args...) do { error_(__func__, __LINE__, ##args); } while (0) 37 #define cerror(cond, ...) do { error_(__func__, __LINE__, (cond) != 0, ##args); } while (0)
|
/third_party/libbpf/include/linux/ |
H A D | err.h | 13 static inline void * ERR_PTR(long error_) in ERR_PTR() argument 15 return (void *) error_; in ERR_PTR()
|
/third_party/node/src/quic/ |
H A D | transportparams.cc | 113 error_ = QuicError::ForNgtcp2Error(ret); in TransportParams() 119 error_ = QuicError::ForNgtcp2Error(NGTCP2_INTERNAL_ERROR); in Encode() 138 error_ = QuicError::ForNgtcp2Error(ret); in Encode() 212 return error_; in error()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | token_enc.c | 51 b->error_ = 0; in VP8TBufferInit() 68 if (!b->error_) { in TBufferNewPage() 73 b->error_ = 1; in TBufferNewPage() 203 assert(!b->error_); in VP8EmitTokens() 229 assert(!b->error_); in VP8EstimateTokenSize()
|
/third_party/protobuf/js/binary/ |
H A D | reader.js | 97 this.error_ = false; 155 this.error_ = false; 223 return this.error_ || this.decoder_.getError(); 297 this.error_ = true; 398 this.error_ = true; 406 this.error_ = true; 575 if (!this.error_ && 578 this.error_ = true;
|
H A D | decoder.js | 94 this.error_ = false; 160 this.error_ = false; 265 return this.error_ || 322 this.error_ = true; 904 this.error_ = true;
|
/third_party/skia/third_party/externals/tint/src/writer/spirv/ |
H A D | builder.cc | 424 error_ = "Attempted to break without a merge block"; in GenerateBreakStatement() 436 error_ = "Attempted to continue without a continue block"; in GenerateContinueStatement() 459 error_ = "Unknown pipeline stage provided"; in GenerateEntryPoint() 478 error_ = "unable to find ID for global variable: " + in GenerateEntryPoint() 597 error_ = "unknown expression type: " + std::string(expr->TypeInfo().name); in GenerateExpression() 719 error_ = "missing constructor for constant"; in GenerateFunctionVariable() 784 error_ = "missing constructor for constant"; in GenerateGlobalVariable() 802 error_ = "invalid type for pipeline constant ID, must be scalar"; in GenerateGlobalVariable() 903 error_ = "unknown decoration"; in GenerateGlobalVariable() 1143 error_ in GenerateAccessorExpression() [all...] |
/third_party/mesa3d/include/android_stub/backtrace/ |
H A D | Backtrace.h | 182 BacktraceUnwindError GetError() { return error_; } in GetError() 211 BacktraceUnwindError error_; member in Backtrace
|