Home
last modified time | relevance | path

Searched refs:error_ (Results 1 – 25 of 68) sorted by relevance

123

/third_party/spirv-tools/tools/sva/src/
Dparser.js30 this.error_ = "";
33 get error() { return this.error_; }
58 this.error_ = token.line() + ": " + token.data();
70 this.error_ = token.line + ": expected = after result id";
78 this.error_ = token.line + ": expected Op got " + token.type;
90 this.error_ = token.line + ": expected result id";
132 this.error_ = token.line + ": Only GLSL.std.450 external instructions supported";
182 this.error_ = t.line + ": expected result id";
191 this.error_ = t.line + ": expected string not found";
200 this.error_ = t.line + ": expected integer not found";
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dparser.js30 this.error_ = "";
33 get error() { return this.error_; }
58 this.error_ = token.line() + ": " + token.data();
70 this.error_ = token.line + ": expected = after result id";
78 this.error_ = token.line + ": expected Op got " + token.type;
90 this.error_ = token.line + ": expected result id";
132 this.error_ = token.line + ": Only GLSL.std.450 external instructions supported";
182 this.error_ = t.line + ": expected result id";
191 this.error_ = t.line + ": expected string not found";
200 this.error_ = t.line + ": expected integer not found";
[all …]
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dparser.js30 this.error_ = "";
33 get error() { return this.error_; }
58 this.error_ = token.line() + ": " + token.data();
70 this.error_ = token.line + ": expected = after result id";
78 this.error_ = token.line + ": expected Op got " + token.type;
90 this.error_ = token.line + ": expected result id";
132 this.error_ = token.line + ": Only GLSL.std.450 external instructions supported";
182 this.error_ = t.line + ": expected result id";
191 this.error_ = t.line + ": expected string not found";
200 this.error_ = t.line + ": expected integer not found";
[all …]
/third_party/node/deps/v8/src/wasm/
Dwasm-result.h78 error_(std::move(other.error_)) {} in Result()
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_; variable
Dinit-expr-interface.h78 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; variable
Ddecoder.h245 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_ = {};
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/
Dspy_hash_state.h43 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_; variable
/third_party/skia/third_party/externals/libwebp/src/utils/
Dbit_writer_utils.c32 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_ = 1; in VP8LPutBitsFlushBits()
320 bw->error_ = 1; in VP8LPutBitsInternal()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dchecker.h118 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()
206 error_(error), in ConvParser()
214 error_(false), in ConvParser()
232 constexpr bool error() const { return error_; } in error()
240 bool error_; variable
Doutput.cc43 while (!v.empty() && !error_) { in Write()
56 error_ = errno; in Write()
60 error_ = EBADF; in Write()
Doutput.h61 int error() const { return error_; } in error()
65 int error_ = 0; variable
/third_party/spirv-tools/source/
Ddiagnostic.cpp78 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()
Ddiagnostic.h37 error_(error) {} in DiagnosticStream()
57 operator spv_result_t() { return error_; } in spv_result_t()
64 spv_result_t error_; variable
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Ddiagnostic.cpp78 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()
Ddiagnostic.h37 error_(error) {} in DiagnosticStream()
57 operator spv_result_t() { return error_; } in spv_result_t()
64 spv_result_t error_; variable
/third_party/skia/third_party/externals/spirv-tools/source/
Ddiagnostic.cpp78 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()
Ddiagnostic.h37 error_(error) {} in DiagnosticStream()
57 operator spv_result_t() { return error_; } in spv_result_t()
64 spv_result_t error_; variable
/third_party/skia/third_party/externals/tint/src/writer/
Dwriter.h29 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_; variable
/third_party/gn/src/util/test/
Dtest.h40 : condition_(condition), error_(error) { in TestResult()
46 const char* error() const { return error_; } in error()
50 const char* error_; variable
71 : file_(file), line_(line), error_(test_result.error()) {} in AssertHelper()
74 printf("\n*** FAILURE %s:%d: %s\n", file_, line_, error_);
80 const char* error_; variable
/third_party/alsa-utils/alsactl/
Dalsactl.h21 void error_(const char *fcn, long line, const char *fmt, ...);
28 #define error(...) do { error_(__func__, __LINE__, __VA_ARGS__); } while (0)
33 #define error(args...) do { error_(__func__, __LINE__, ##args); } while (0)
34 #define cerror(cond, ...) do { error_(__func__, __LINE__, (cond) != 0, ##args); } while (0)
/third_party/skia/third_party/externals/libwebp/src/enc/
Dtoken_enc.c51 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/node/src/quic/
Dtransportparams.cc113 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/libbpf/include/linux/
Derr.h13 static inline void * ERR_PTR(long error_) in ERR_PTR() argument
15 return (void *) error_; in ERR_PTR()
/third_party/protobuf/js/binary/
Dreader.js97 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;
/third_party/skia/third_party/externals/tint/src/writer/spirv/
Dbuilder.cc424 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 …]

123