/freebsd/contrib/llvm-project/clang/lib/Tooling/Core/ |
H A D | Diagnostic.cpp | 49 Diagnostic::Level DiagLevel, StringRef BuildDirectory) in Diagnostic() argument 50 : DiagnosticName(DiagnosticName), DiagLevel(DiagLevel), in Diagnostic() 56 Level DiagLevel, llvm::StringRef BuildDirectory) in Diagnostic() argument 58 DiagLevel(DiagLevel), BuildDirectory(BuildDirectory) {} in Diagnostic()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
H A D | DiagnosticsYaml.h | 66 : DiagLevel(clang::tooling::Diagnostic::Level::Warning) {} in LLVM_YAML_IS_SEQUENCE_VECTOR() 70 DiagLevel(D.DiagLevel), BuildDirectory(D.BuildDirectory) {} in LLVM_YAML_IS_SEQUENCE_VECTOR() 74 DiagLevel, BuildDirectory); in LLVM_YAML_IS_SEQUENCE_VECTOR() 80 clang::tooling::Diagnostic::Level DiagLevel; in LLVM_YAML_IS_SEQUENCE_VECTOR() 90 Io.mapOptional("Level", Keys->DiagLevel); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | ChainedDiagnosticConsumer.h | 59 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument 62 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic() 64 Primary->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic() 65 Secondary->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
|
H A D | TextDiagnosticBuffer.h | 53 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
|
H A D | LogDiagnosticPrinter.h | 78 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | DiagnosticIDs.cpp | 758 DiagnosticIDs::Level DiagLevel in ProcessDiag() local 763 if (DiagLevel >= DiagnosticIDs::Error) { in ProcessDiag() 772 if (DiagLevel != DiagnosticIDs::Note) { in ProcessDiag() 780 Diag.LastDiagLevel = DiagLevel; in ProcessDiag() 786 if (DiagLevel >= DiagnosticIDs::Error && in ProcessDiag() 796 if (DiagLevel == DiagnosticIDs::Ignored || in ProcessDiag() 797 (DiagLevel == DiagnosticIDs::Note && in ProcessDiag() 801 if (DiagLevel >= DiagnosticIDs::Error) { in ProcessDiag() 817 DiagLevel == DiagnosticIDs::Error) { in ProcessDiag() 828 EmitDiag(Diag, DiagLevel); in ProcessDiag() [all …]
|
H A D | Diagnostic.cpp | 516 Level DiagLevel = storedDiag.getLevel(); in Report() local 518 Client->HandleDiagnostic(DiagLevel, Info); in Report() 520 if (DiagLevel == DiagnosticsEngine::Warning) in Report() 535 DiagnosticIDs::Level DiagLevel in EmitCurrentDiagnostic() local 538 Emitted = (DiagLevel != DiagnosticIDs::Ignored); in EmitCurrentDiagnostic() 541 Diags->EmitDiag(*this, DiagLevel); in EmitCurrentDiagnostic() 561 void DiagnosticConsumer::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument 566 if (DiagLevel == DiagnosticsEngine::Warning) in HandleDiagnostic() 568 else if (DiagLevel >= DiagnosticsEngine::Error) in HandleDiagnostic() 1199 DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Core/ |
H A D | Diagnostic.h | 77 Diagnostic(llvm::StringRef DiagnosticName, Level DiagLevel, 81 const SmallVector<DiagnosticMessage, 1> &Notes, Level DiagLevel, 94 Level DiagLevel; member
|
/freebsd/contrib/llvm-project/clang/lib/Testing/ |
H A D | TestAST.cpp | 40 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument 42 Out.emplace_back(DiagLevel, Info); in HandleDiagnostic() 43 if (ReportErrors && DiagLevel >= DiagnosticsEngine::Error) { in HandleDiagnostic()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | SerializedDiagnosticPrinter.cpp | 154 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, 204 unsigned getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel, 538 unsigned SDiagsWriter::getEmitDiagnosticFlag(DiagnosticsEngine::Level DiagLevel, in getEmitDiagnosticFlag() argument 540 if (DiagLevel == DiagnosticsEngine::Note) in getEmitDiagnosticFlag() 569 void SDiagsWriter::HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument 585 if (DiagLevel != DiagnosticsEngine::Note) { in HandleDiagnostic() 604 if (DiagLevel == DiagnosticsEngine::Note) in HandleDiagnostic() 607 EmitDiagnosticMessage(FullSourceLoc(), PresumedLoc(), DiagLevel, in HandleDiagnostic() 610 if (DiagLevel == DiagnosticsEngine::Note) in HandleDiagnostic() 620 FullSourceLoc(Info.getLocation(), Info.getSourceManager()), DiagLevel, in HandleDiagnostic()
|
H A D | VerifyDiagnosticConsumer.cpp | 731 DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) { in HandleDiagnostic() argument 767 Buffer->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/ |
H A D | ubsan_diag.h | 76 enum DiagLevel { 119 DiagLevel Level; in TypeName() 188 Diag(Location Loc, DiagLevel Level, ErrorType ET, const char *Message) 96 enum DiagLevel { global() enum
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | TokenAnalyzer.cpp | 42 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument 44 if (DiagLevel == DiagnosticsEngine::Fatal) { in HandleDiagnostic()
|
/freebsd/contrib/llvm-project/clang/include/clang/Rewrite/Frontend/ |
H A D | FixItRewriter.h | 125 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangModulesDeclVendor.cpp | 50 void HandleDiagnostic(clang::DiagnosticsEngine::Level DiagLevel, 143 clang::DiagnosticsEngine::Level DiagLevel, const clang::Diagnostic &info) { in HandleDiagnostic() argument 149 m_diag_printer->HandleDiagnostic(DiagLevel, info); in HandleDiagnostic() 153 m_diagnostics.push_back(IDAndDiagnostic(DiagLevel, m_output)); in HandleDiagnostic()
|
H A D | ClangExpressionParser.cpp | 183 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument 203 DiagnosticConsumer::HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic() 207 m_passthrough->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic() 213 switch (DiagLevel) { in HandleDiagnostic()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticIDs.h | 374 void EmitDiag(DiagnosticsEngine &Diag, Level DiagLevel) const;
|
/freebsd/contrib/llvm-project/clang/tools/clang-format/ |
H A D | ClangFormat.cpp | 402 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 646 void HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic() argument
|