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

/external/llvm/lib/Support/
H A DSourceMgr.cpp211 SMDiagnostic Diagnostic = GetMessage(Loc, Kind, Msg, Ranges); local
215 DiagHandler(Diagnostic, DiagContext);
227 Diagnostic.print(0, OS, ShowColors);
/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h147 DD.ForbiddenTypeData.Diagnostic = diagnostic;
179 return ForbiddenTypeData.Diagnostic;
207 unsigned Diagnostic; member in struct:clang::sema::DelayedDiagnostic::__anon3386::__anon3388
H A DOverload.h665 /// \brief Indicates whether a diagnostic is stored in Diagnostic.
675 char Diagnostic[sizeof(PartialDiagnosticAt)]; member in union:clang::OverloadCandidate::DeductionFailureInfo::__anon3399
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp235 void clang_disposeDiagnostic(CXDiagnostic Diagnostic) { argument
240 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) { argument
241 if (!Diagnostic)
244 CXDiagnosticSeverity Severity = clang_getDiagnosticSeverity(Diagnostic);
254 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
264 unsigned N = clang_getDiagnosticNumRanges(Diagnostic);
268 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
301 CXString Text = clang_getDiagnosticSpelling(Diagnostic);
314 CXString OptionName = clang_getDiagnosticOption(Diagnostic, 0);
327 if (unsigned CategoryID = clang_getDiagnosticCategory(Diagnostic)) {
[all...]
/external/clang/bindings/python/clang/
H A Dcindex.py272 class Diagnostic(object): class in inherits:object
274 A Diagnostic is a single instance of a Clang diagnostic. It includes the
363 return "<Diagnostic severity %r, location %r, spelling %r>" % (
2097 return Diagnostic(diag)
2468 Diagnostic),
2501 [Diagnostic]),
2653 [Diagnostic],
2662 [Diagnostic, c_uint, POINTER(SourceRange)],
2667 [Diagnostic],
2671 [Diagnostic],
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c810 void PrintDiagnostic(CXDiagnostic Diagnostic) { argument
819 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
822 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
826 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
831 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
835 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);

Completed in 181 milliseconds