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

/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h146 DD.ForbiddenTypeData.Diagnostic = diagnostic;
178 return ForbiddenTypeData.Diagnostic;
201 unsigned Diagnostic; member in struct:clang::sema::DelayedDiagnostic::__anon2647::__anon2649
/external/clang/tools/libclang/
H A DCIndexDiagnostic.cpp50 void clang_disposeDiagnostic(CXDiagnostic Diagnostic) { argument
51 CXStoredDiagnostic *Stored = static_cast<CXStoredDiagnostic *>(Diagnostic);
55 CXString clang_formatDiagnostic(CXDiagnostic Diagnostic, unsigned Options) { argument
56 if (!Diagnostic)
59 CXDiagnosticSeverity Severity = clang_getDiagnosticSeverity(Diagnostic);
69 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
79 unsigned N = clang_getDiagnosticNumRanges(Diagnostic);
83 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
116 CXString Text = clang_getDiagnosticSpelling(Diagnostic);
129 CXString OptionName = clang_getDiagnosticOption(Diagnostic,
283 clang_getDiagnosticFixIt(CXDiagnostic Diagnostic, unsigned FixIt, CXSourceRange *ReplacementRange) argument
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp197 SMDiagnostic Diagnostic = GetMessage(Loc, Kind, Msg, Ranges); local
201 DiagHandler(Diagnostic, DiagContext);
211 Diagnostic.print(0, OS);
/external/clang/bindings/python/clang/
H A Dcindex.py177 class Diagnostic(object): class in inherits:object
179 A Diagnostic is a single instance of a Clang diagnostic. It includes the
244 return "<Diagnostic severity %r, location %r, spelling %r>" % (
1129 ## Diagnostic Conversion ##
1140 _clang_disposeDiagnostic.argtypes = [Diagnostic]
1143 _clang_getDiagnosticSeverity.argtypes = [Diagnostic]
1147 _clang_getDiagnosticLocation.argtypes = [Diagnostic]
1151 _clang_getDiagnosticSpelling.argtypes = [Diagnostic]
1156 _clang_getDiagnosticNumRanges.argtypes = [Diagnostic]
1160 _clang_getDiagnosticRange.argtypes = [Diagnostic, c_uin
[all...]
/external/clang/tools/c-index-test/
H A Dc-index-test.c360 void PrintDiagnostic(CXDiagnostic Diagnostic) { argument
369 if (clang_getDiagnosticSeverity(Diagnostic) == CXDiagnostic_Ignored)
372 Msg = clang_formatDiagnostic(Diagnostic, display_opts);
376 clang_getSpellingLocation(clang_getDiagnosticLocation(Diagnostic),
381 num_fixits = clang_getDiagnosticNumFixIts(Diagnostic);
384 CXString insertion_text = clang_getDiagnosticFixIt(Diagnostic, i, &range);

Completed in 150 milliseconds