Lines Matching full:diagnostic
46 spv_diagnostic diagnostic = DE_NULL;
55 const spv_result_t compileOk = spvTextToBinary(context, spvSource.c_str(), spvSource.size(), &binary, &diagnostic);
58 buildInfo->infoLog = diagnostic? diagnostic->error : ""; // \todo [2015-07-13 pyry] Include debug log?
66 spvDiagnosticDestroy(diagnostic);
74 spvDiagnosticDestroy(diagnostic);
85 spv_diagnostic diagnostic = DE_NULL;
92 const spv_result_t result = spvBinaryToText(context, binary, binarySizeInWords, 0, &text, &diagnostic);
100 spvDiagnosticDestroy(diagnostic);
106 spvDiagnosticDestroy(diagnostic);
116 spv_diagnostic diagnostic = DE_NULL;
121 const spv_result_t valid = spvValidate(context, &cbinary, &diagnostic);
123 if (diagnostic)
124 *infoLog << diagnostic->error;
126 spvDiagnosticDestroy(diagnostic);
133 spvDiagnosticDestroy(diagnostic);