Lines Matching defs:error
82 // Returns the error message(s).
92 return diagnostic->error;
119 spv_result_t error = spvTextToBinary(context.context, txt.c_str(),
121 if (error) {
125 EXPECT_EQ(SPV_SUCCESS, error);
131 error = spvBinaryToText(context.context, binary->code, binary->wordCount,
133 if (error) {
137 EXPECT_EQ(SPV_SUCCESS, error) << txt;
148 // Returns the error message.
162 std::string error_message = diagnostic->error;