Home
last modified time | relevance | path

Searched refs:SarifDocumentWriter (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSarif.h50 class SarifDocumentWriter; variable
73 friend class clang::SarifDocumentWriter;
106 friend class clang::SarifDocumentWriter;
176 friend class SarifDocumentWriter; variable
212 friend class clang::SarifDocumentWriter;
258 friend class clang::SarifDocumentWriter;
316 friend class clang::SarifDocumentWriter;
380 class SarifDocumentWriter {
426 SarifDocumentWriter() = delete;
429 SarifDocumentWriter(const SourceManager &SourceMgr) : SourceMgr(SourceMgr) {} in SarifDocumentWriter() function
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSarif.cpp209 SarifDocumentWriter::createPhysicalLocation(const CharSourceRange &R) { in createPhysicalLocation()
244 json::Object &SarifDocumentWriter::getCurrentTool() { in getCurrentTool()
255 void SarifDocumentWriter::reset() { in reset()
260 void SarifDocumentWriter::endRun() { in endRun()
324 SarifDocumentWriter::createThreadFlows(ArrayRef<ThreadFlow> ThreadFlows) { in createThreadFlows()
338 SarifDocumentWriter::createCodeFlow(ArrayRef<ThreadFlow> ThreadFlows) { in createCodeFlow()
342 void SarifDocumentWriter::createRun(StringRef ShortToolName, in createRun()
366 json::Object &SarifDocumentWriter::getCurrentRun() { in getCurrentRun()
378 size_t SarifDocumentWriter::createRule(const SarifRule &Rule) { in createRule()
384 void SarifDocumentWriter::appendResult(const SarifResult &Result) { in appendResult()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DSARIFDiagnosticPrinter.h28 class SarifDocumentWriter; variable
47 SarifDocumentWriter &getSarifWriter() const { in getSarifWriter()
52 void setSarifWriter(std::unique_ptr<SarifDocumentWriter> SarifWriter) { in setSarifWriter()
71 std::unique_ptr<SarifDocumentWriter> Writer;
H A DSARIFDiagnostic.h26 DiagnosticOptions &DiagOpts, SarifDocumentWriter *Writer);
59 SarifDocumentWriter *Writer;
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp33 SarifDocumentWriter SarifWriter;
145 SarifDocumentWriter &SarifWriter) { in createRuleMapping()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DSARIFDiagnostic.cpp35 SarifDocumentWriter *Writer) in SARIFDiagnostic()
H A DFrontendAction.cpp891 std::make_unique<SarifDocumentWriter>(CI.getSourceManager())); in BeginSourceFile()