Searched refs:DiagLevel (Results 1 - 20 of 20) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Core/
H A DDiagnostic.cpp49 Diagnostic::Level DiagLevel, StringRef BuildDirectory)
50 : DiagnosticName(DiagnosticName), DiagLevel(DiagLevel),
56 Level DiagLevel, llvm::StringRef BuildDirectory,
59 DiagLevel(DiagLevel), BuildDirectory(BuildDirectory), Ranges(Ranges) {}
48 Diagnostic(llvm::StringRef DiagnosticName, Diagnostic::Level DiagLevel, StringRef BuildDirectory) argument
53 Diagnostic(llvm::StringRef DiagnosticName, const DiagnosticMessage &Message, const SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel, llvm::StringRef BuildDirectory, const SmallVector<FileByteRange, 1> &Ranges) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DChainedDiagnosticConsumer.h59 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
62 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
64 Primary->HandleDiagnostic(DiagLevel, Info);
65 Secondary->HandleDiagnostic(DiagLevel, Info);
H A DLogDiagnosticPrinter.h78 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
H A DTextDiagnosticBuffer.h53 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
H A DVerifyDiagnosticConsumer.h325 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DDiagnostic.h71 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel,
75 const SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel,
89 Level DiagLevel; member in struct:clang::tooling::Diagnostic
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DDiagnosticsYaml.h66 : DiagLevel(clang::tooling::Diagnostic::Level::Warning) {}
70 DiagLevel(D.DiagLevel), BuildDirectory(D.BuildDirectory),
75 DiagLevel, BuildDirectory, Ranges);
81 clang::tooling::Diagnostic::Level DiagLevel; member in class:llvm::yaml::MappingTraits::NormalizedDiagnostic
92 Io.mapOptional("Level", Keys->DiagLevel);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp128 void FixItRewriter::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, argument
131 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
134 DiagLevel >= DiagnosticsEngine::Error ||
135 (DiagLevel == DiagnosticsEngine::Note && !PrevDiagSilenced) ||
136 (DiagLevel > DiagnosticsEngine::Note && Info.getNumFixItHints())) {
137 Client->HandleDiagnostic(DiagLevel, Info);
144 if (DiagLevel <= DiagnosticsEngine::Note)
147 if (DiagLevel >= DiagnosticsEngine::Error && FixItOpts->FixOnlyWarnings) {
182 if (DiagLevel >= DiagnosticsEngine::Error) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DDiagnosticIDs.cpp637 DiagnosticIDs::Level DiagLevel
642 if (DiagLevel >= DiagnosticIDs::Error) {
651 if (DiagLevel != DiagnosticIDs::Note) {
659 Diag.LastDiagLevel = DiagLevel;
665 if (DiagLevel >= DiagnosticIDs::Error &&
675 if (DiagLevel == DiagnosticIDs::Ignored ||
676 (DiagLevel == DiagnosticIDs::Note &&
680 if (DiagLevel >= DiagnosticIDs::Error) {
696 DiagLevel == DiagnosticIDs::Error) {
707 EmitDiag(Diag, DiagLevel);
[all...]
H A DDiagnostic.cpp493 Level DiagLevel = storedDiag.getLevel(); local
495 Client->HandleDiagnostic(DiagLevel, Info);
497 if (DiagLevel == DiagnosticsEngine::Warning)
512 DiagnosticIDs::Level DiagLevel local
515 Emitted = (DiagLevel != DiagnosticIDs::Ignored);
518 Diags->EmitDiag(*this, DiagLevel);
538 void DiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, argument
543 if (DiagLevel == DiagnosticsEngine::Warning)
545 else if (DiagLevel >= DiagnosticsEngine::Error)
1129 DiagnosticsEngine::Level DiagLevel,
1128 HandleDiagnostic( DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h125 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.h96 enum DiagLevel { enum in namespace:__ubsan
139 DiagLevel Level;
208 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp157 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
207 unsigned getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel,
541 unsigned SDiagsWriter::getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel, argument
543 if (DiagLevel == DiagnosticsEngine::Note)
572 void SDiagsWriter::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, argument
588 if (DiagLevel != DiagnosticsEngine::Note) {
607 if (DiagLevel == DiagnosticsEngine::Note)
610 EmitDiagnosticMessage(FullSourceLoc(), PresumedLoc(), DiagLevel, local
613 if (DiagLevel == DiagnosticsEngine::Note)
623 FullSourceLoc(Info.getLocation(), Info.getSourceManager()), DiagLevel, local
[all...]
H A DVerifyDiagnosticConsumer.cpp723 DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) {
759 Buffer->HandleDiagnostic(DiagLevel, Info);
722 HandleDiagnostic( DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp186 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
191 } else if (DiagLevel >= DiagnosticsEngine::Error) {
194 Other.HandleDiagnostic(DiagLevel, Info);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticIDs.h330 void EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const;
H A DDiagnostic.h1576 virtual void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
1584 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
1600 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangModulesDeclVendor.cpp52 void HandleDiagnostic(clang::DiagnosticsEngine::Level DiagLevel,
140 clang::DiagnosticsEngine::Level DiagLevel, const clang::Diagnostic &info) {
143 m_diag_printer->HandleDiagnostic(DiagLevel, info);
147 m_diagnostics.push_back(IDAndDiagnostic(DiagLevel, m_output));
139 HandleDiagnostic( clang::DiagnosticsEngine::Level DiagLevel, const clang::Diagnostic &info) argument
H A DClangExpressionParser.cpp184 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
204 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info);
208 m_passthrough->HandleDiagnostic(DiagLevel, Info);
214 switch (DiagLevel) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp701 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,

Completed in 398 milliseconds