Home
last modified time | relevance | path

Searched refs:Reporter (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/
H A DFindAllSymbolsAction.h28 SymbolReporter *Reporter,
36 SymbolReporter *const Reporter;
46 SymbolReporter *Reporter,
48 : Reporter(Reporter), RegexHeaderMap(RegexHeaderMap) {} in Reporter() function
51 return std::make_unique<FindAllSymbolsAction>(Reporter, RegexHeaderMap); in create()
55 SymbolReporter *const Reporter;
H A DFindAllSymbolsAction.cpp19 SymbolReporter *Reporter, in FindAllSymbolsAction() argument
21 : Reporter(Reporter), Collector(RegexHeaderMap), Handler(&Collector), in FindAllSymbolsAction()
22 Matcher(Reporter, &Collector) { in FindAllSymbolsAction()
31 Reporter, &Compiler.getSourceManager(), &Collector)); in CreateASTConsumer()
H A DFindAllSymbols.h36 explicit FindAllSymbols(SymbolReporter *Reporter,
38 : Reporter(Reporter), Collector(Collector) {} in Reporter() argument
53 SymbolReporter *const Reporter; variable
H A DFindAllMacros.h28 explicit FindAllMacros(SymbolReporter *Reporter, SourceManager *SM,
30 : Reporter(Reporter), SM(SM), Collector(Collector) {} in Reporter() function
54 SymbolReporter *const Reporter; variable
H A DFindAllMacros.cpp64 Reporter->reportSymbols(SM->getFileEntryForID(SM->getMainFileID())->getName(), in EndOfMainFile()
H A DFindAllSymbols.cpp262 Reporter->reportSymbols(Filename, FileSymbols); in onEndOfTranslationUnit()
/llvm-project-15.0.7/clang-tools-extra/clangd/support/
H A DThreadCrashReporter.cpp29 ThreadCrashReporter *Reporter = CurrentReporter; in runCrashHandlers() local
30 while (Reporter) { in runCrashHandlers()
31 Reporter->Callback(); in runCrashHandlers()
32 Reporter = Reporter->Next; in runCrashHandlers()
/llvm-project-15.0.7/clang-tools-extra/clang-move/
H A DMove.h119 DeclarationReporter *const Reporter);
197 DeclarationReporter *const Reporter; variable
205 DeclarationReporter *const Reporter) in ClangMoveAction() argument
206 : MoveTool(Context, Reporter) { in ClangMoveAction()
224 DeclarationReporter *const Reporter = nullptr)
225 : Context(Context), Reporter(Reporter) {} in Context()
228 return std::make_unique<ClangMoveAction>(Context, Reporter); in create()
234 DeclarationReporter *const Reporter; variable
H A DMove.cpp485 DeclarationReporter *const Reporter) in ClangMoveTool() argument
486 : Context(Context), Reporter(Reporter) { in ClangMoveTool()
880 assert(Reporter); in onEndOfTranslationUnit()
886 Reporter->reportDeclaration(QualifiedName, "Variable", Templated); in onEndOfTranslationUnit()
889 Reporter->reportDeclaration(QualifiedName, "Function", Templated); in onEndOfTranslationUnit()
892 Reporter->reportDeclaration(QualifiedName, "Class", Templated); in onEndOfTranslationUnit()
894 Reporter->reportDeclaration(QualifiedName, "Enum", Templated); in onEndOfTranslationUnit()
897 Reporter->reportDeclaration(QualifiedName, "TypeAlias", Templated); in onEndOfTranslationUnit()
/llvm-project-15.0.7/libc/utils/HdrGen/
H A DIncludeFileCommand.cpp23 const Command::ErrorReporter &Reporter) const { in run()
25 Reporter.printFatalError( in run()
32 Reporter.printFatalError(llvm::StringRef("Unable to open ") + IncludeFile); in run()
H A DGenerator.cpp106 Command::ErrorReporter Reporter( in generate() local
108 Cmd->run(OS, Args, StdHeader, Records, Reporter); in generate()
H A DPublicAPICommand.cpp136 const Command::ErrorReporter &Reporter) const { in run()
138 Reporter.printFatalError("public_api command does not take any arguments."); in run()
H A DIncludeFileCommand.h27 const Command::ErrorReporter &Reporter) const override;
H A DPublicAPICommand.h40 const Command::ErrorReporter &Reporter) const override;
H A DCommand.h49 const ErrorReporter &Reporter) const = 0;
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-move/
H A DClangMoveTests.cpp208 DeclarationReporter *const Reporter = nullptr) { in runClangMoveOnCode() argument
230 Reporter != nullptr}; in runClangMoveOnCode()
233 &MoveContext, Reporter); in runClangMoveOnCode()
614 DeclarationReporter Reporter; in TEST() local
631 runClangMoveOnCode(Spec, TestHeader, TestCode, &Reporter); in TEST()
633 for (const auto &DelPair : Reporter.getDeclarationList()) in TEST()
/llvm-project-15.0.7/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/
H A DFindAllSymbolsTests.cpp60 int seen(const SymbolInfo &Symbol) { return Reporter.seen(Symbol); } in seen()
62 int used(const SymbolInfo &Symbol) { return Reporter.used(Symbol); } in used()
95 new FindAllSymbolsActionFactory(&Reporter, &RegexMap)); in runFindAllSymbols()
138 TestSymbolReporter Reporter; member in clang::find_all_symbols::FindAllSymbolsTest
/llvm-project-15.0.7/clang-tools-extra/clang-move/tool/
H A DClangMove.cpp136 move::DeclarationReporter Reporter; in main() local
137 move::ClangMoveActionFactory Factory(&Context, &Reporter); in main()
145 const auto &Declarations = Reporter.getDeclarationList(); in main()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/
H A DFindAllSymbolsMain.cpp152 clang::find_all_symbols::YamlReporter Reporter; in main() local
156 &Reporter, clang::find_all_symbols::getSTLPostfixHeaderMap()); in main()
/llvm-project-15.0.7/clang/tools/scan-view/share/
H A DScanView.py29 import Reporter
122 except Reporter.ReportFailure as e:
341 bug = Reporter.BugReport(title, description, files)
778 import Reporter
780 reporters = Reporter.getReporters()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DClangTidy.cpp589 ErrorReporter Reporter(Context, Fix, std::move(BaseFS)); in handleErrors() local
591 Reporter.getSourceManager().getFileManager().getVirtualFileSystem(); in handleErrors()
604 Reporter.reportDiagnostic(Error); in handleErrors()
608 Reporter.finish(); in handleErrors()
609 WarningsAsErrorsCount += Reporter.getWarningsAsErrorsCount(); in handleErrors()
/llvm-project-15.0.7/clang/tools/scan-view/
H A DCMakeLists.txt8 Reporter.py
/llvm-project-15.0.7/flang/include/flang/Common/
H A Dformat.h51 using Reporter = std::function<bool(const FormatMessage &)>; in ENUM_CLASS()
52 FormatValidator(const CHAR *format, size_t length, Reporter reporter, in ENUM_CLASS()
134 Reporter reporter_; in ENUM_CLASS()
/llvm-project-15.0.7/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp2351 threadSafety::ThreadSafetyReporter Reporter(S, FL, FEL); in IssueWarnings() local
2353 Reporter.setIssueBetaWarnings(true); in IssueWarnings()
2355 Reporter.setVerbose(true); in IssueWarnings()
2357 threadSafety::runThreadSafetyAnalysis(AC, Reporter, in IssueWarnings()
2359 Reporter.emitDiagnostics(); in IssueWarnings()
2398 CalledOnceCheckReporter Reporter(S, IPData->CalledOnceData); in IssueWarnings() local
2400 AC, Reporter, in IssueWarnings()
/llvm-project-15.0.7/llvm/docs/
H A DReportingGuide.rst93 Following Up With Reporter(s)

12