Searched defs:Diagnostic (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Sema/
H A DTemplateDeduction.h181 /// \brief Indicates whether a diagnostic is stored in Diagnostic.
191 char Diagnostic[sizeof(PartialDiagnosticAt)]; member in union:clang::DeductionFailureInfo::__anon17631
H A DDelayedDiagnostic.h152 DD.ForbiddenTypeData.Diagnostic = diagnostic;
186 return ForbiddenTypeData.Diagnostic;
223 unsigned Diagnostic; member in struct:clang::sema::DelayedDiagnostic::FTD
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp250 void clang_disposeDiagnostic(CXDiagnostic Diagnostic) { argument
255 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) { argument
256 if (!Diagnostic)
259 CXDiagnosticSeverity Severity = clang_getDiagnosticSeverity(Diagnostic);
269 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
279 unsigned N = clang_getDiagnosticNumRanges(Diagnostic);
283 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
316 CXString Text = clang_getDiagnosticSpelling(Diagnostic);
329 CXString OptionName = clang_getDiagnosticOption(Diagnostic, nullptr);
342 if (unsigned CategoryID = clang_getDiagnosticCategory(Diagnostic)) {
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp205 void SourceMgr::PrintMessage(raw_ostream &OS, const SMDiagnostic &Diagnostic, argument
209 DiagHandler(Diagnostic, DiagContext);
213 if (Diagnostic.getLoc().isValid()) {
214 unsigned CurBuf = FindBufferContainingLoc(Diagnostic.getLoc());
219 Diagnostic.print(nullptr, OS, ShowColors);
/external/clang/bindings/python/clang/
H A Dcindex.py295 class Diagnostic(object): class in inherits:object
297 A Diagnostic is a single instance of a Clang diagnostic. It includes the
386 return "<Diagnostic severity %r, location %r, spelling %r>" % (
2400 return Diagnostic(diag)
2797 Diagnostic),
2834 [Diagnostic]),
2994 [Diagnostic],
2998 [Diagnostic],
3003 [Diagnostic, c_uint, POINTER(SourceRange)],
3008 [Diagnostic],
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c928 void PrintDiagnostic(CXDiagnostic Diagnostic) { argument
937 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
940 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
944 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
949 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
953 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);

Completed in 506 milliseconds