Home | History | Annotate | Download | only in libclang

Lines Matching refs:Diagnostic

10 |* Implements the diagnostic functions of the Clang C interface.              *|
172 // -error-on-deserialized-decl, that will emit a diagnostic error,
177 // We check here if a new diagnostic was appended since the last time the
178 // diagnostic set was created, in which case we reset it.
234 void clang_disposeDiagnostic(CXDiagnostic Diagnostic) {
239 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) {
240 if (!Diagnostic)
243 CXDiagnosticSeverity Severity = clang_getDiagnosticSeverity(Diagnostic);
253 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
263 unsigned N = clang_getDiagnosticNumRanges(Diagnostic);
267 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
300 CXString Text = clang_getDiagnosticSpelling(Diagnostic);
304 Out << "<no diagnostic text>";
313 CXString OptionName = clang_getDiagnosticOption(Diagnostic, 0);
326 if (unsigned CategoryID = clang_getDiagnosticCategory(Diagnostic)) {
338 CXString CategoryName = clang_getDiagnosticCategoryText(Diagnostic);