Home
last modified time | relevance | path

Searched defs:Reporter (Results 1 – 24 of 24) sorted by relevance

/llvm-project/openmp/runtime/test/transform/tile/
H A Dparallel-wsloop-collapse-foreach.cpp11 struct Reporter { struct
14 Reporter(const char *name) : name(name) { print("ctor"); } in Reporter() function
16 Reporter() : name("<anon>") { print("ctor"); } in Reporter() function
18 Reporter(const Reporter &that) : name(that.name) { print("copy ctor"); } in Reporter() argument
20 Reporter(Reporter &&that) : name(that.name) { print("move ctor"); } in Reporter() argument
22 ~Reporter() { print("dtor"); } in ~Reporter() argument
24 const Reporter &operator=(const Reporter &that) { in operator =() argument
30 const Reporter &operator=(Reporter &&that) { in operator =() argument
37 const Reporter *owner; argument
102 Iterator begin() const { in begin()
[all …]
H A Dforeach.cpp11 struct Reporter { struct
14 Reporter(const char *name) : name(name) { print("ctor"); } in Reporter() argument
16 Reporter() : name("<anon>") { print("ctor"); } in Reporter() function
18 Reporter(const Reporter &that) : name(that.name) { print("copy ctor"); } in Reporter() argument
20 Reporter(Reporter &&that) : name(that.name) { print("move ctor"); } in Reporter() function
22 ~Reporter() { print("dtor"); } in ~Reporter() argument
24 const Reporter &operator=(const Reporter &that) { in operator =() argument
30 const Reporter &operator=(Reporter &&that) { in operator =() argument
37 const Reporter *owner; argument
127 for (Reporter c{"C"}; auto &&v : Reporter("A")) in main() argument
H A Diterfor.cpp11 struct Reporter { struct
14 Reporter(const char *name) : name(name) { print("ctor"); } in Reporter() argument
16 Reporter() : name("<anon>") { print("ctor"); } in Reporter() function
18 Reporter(const Reporter &that) : name(that.name) { print("copy ctor"); } in Reporter() argument
20 Reporter(Reporter &&that) : name(that.name) { print("move ctor"); } in Reporter() function
22 ~Reporter() { print("dtor"); } in ~Reporter() argument
24 const Reporter &operator=(const Reporter &that) { in operator =() argument
30 const Reporter &operator=(Reporter &&that) { in operator =() argument
37 const Reporter *owner; argument
130 Reporter A("A"), B("B"); in main() argument
/llvm-project/openmp/runtime/test/transform/unroll/
H A Dfactor_foreach.cpp11 struct Reporter { struct
14 Reporter(const char *name) : name(name) { print("ctor"); } in Reporter() argument
16 Reporter() : name("<anon>") { print("ctor"); } in Reporter() function
18 Reporter(const Reporter &that) : name(that.name) { print("copy ctor"); } in Reporter() argument
20 Reporter(Reporter &&that) : name(that.name) { print("move ctor"); } in Reporter() argument
22 ~Reporter() { print("dtor"); } in ~Reporter() argument
24 const Reporter &operator=(const Reporter &that) { in operator =() argument
30 const Reporter &operator=(Reporter &&that) { in operator =() argument
37 const Reporter *owner; argument
132 for (Reporter c{"init-stmt"}; auto &&v : Reporter("range")) in main() argument
H A Dfactor_iterfor.cpp11 struct Reporter { struct
14 Reporter(const char *name) : name(name) { print("ctor"); } in Reporter() argument
16 Reporter() : name("<anon>") { print("ctor"); } in Reporter() argument
18 Reporter(const Reporter &that) : name(that.name) { print("copy ctor"); } in Reporter() argument
20 Reporter(Reporter &&that) : name(that.name) { print("move ctor"); } in Reporter() argument
22 ~Reporter() { print("dtor"); } in ~Reporter() argument
24 const Reporter &operator=(const Reporter &that) { in operator =() argument
30 const Reporter &operator=(Reporter &&that) { in operator =() argument
37 const Reporter *owner; argument
132 Reporter range("range"); in main() argument
H A Dfactor_parallel-wsloop-collapse-foreach.cpp11 struct Reporter { struct
14 Reporter(const char *name) : name(name) { print("ctor"); } in Reporter() argument
16 Reporter() : name("<anon>") { print("ctor"); } in Reporter() argument
18 Reporter(const Reporter &that) : name(that.name) { print("copy ctor"); } in Reporter() function
20 Reporter(Reporter &&that) : name(that.name) { print("move ctor"); } in Reporter() function
22 ~Reporter() { print("dtor"); } in ~Reporter() argument
24 const Reporter &operator=(const Reporter &that) { in operator =() argument
30 const Reporter &operator=(Reporter &&that) { in operator =() argument
37 const Reporter *owner; argument
109 Iterator begin() const { in begin()
[all …]
/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/
H A DFindAllSymbols.h38 : Reporter(Reporter), Collector(Collector) {} in Reporter() function
53 SymbolReporter *const Reporter; variable
H A DFindAllMacros.h31 : Reporter(Reporter), SM(SM), Collector(Collector) {} in Reporter() function
55 SymbolReporter *const Reporter; variable
H A DFindAllSymbolsAction.h48 : Reporter(Reporter), RegexHeaderMap(RegexHeaderMap) {} in Reporter() argument
H A DFindAllSymbolsAction.cpp19 SymbolReporter *Reporter, in FindAllSymbolsAction()
/llvm-project/clang-tools-extra/clang-move/
H A DMove.h197 DeclarationReporter *const Reporter; variable
205 DeclarationReporter *const Reporter) in ClangMoveAction()
234 DeclarationReporter *const Reporter; variable
H A DMove.cpp486 DeclarationReporter *const Reporter) in ClangMoveTool()
/llvm-project/clang-tools-extra/clangd/support/
H A DThreadCrashReporter.cpp28 ThreadCrashReporter *Reporter = CurrentReporter; in runCrashHandlers() local
/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp51 struct CoveragePrinterTextDirectory::Reporter : public DirectoryCoverageReport { struct in CoveragePrinterTextDirectory
54 Reporter(CoveragePrinterTextDirectory &Printer, in Reporter() argument
52 PrinterCoveragePrinterTextDirectory::Reporter global() argument
60 generateSubDirectoryReportCoveragePrinterTextDirectory::Reporter generateSubDirectoryReport() argument
H A DSourceCoverageViewHTML.cpp704 struct CoveragePrinterHTMLDirectory::Reporter : public DirectoryCoverageReport { global() struct in CoveragePrinterHTMLDirectory
705 PrinterCoveragePrinterHTMLDirectory::Reporter global() argument
707 ReporterCoveragePrinterHTMLDirectory::Reporter Reporter() argument
713 generateSubDirectoryReportCoveragePrinterHTMLDirectory::Reporter generateSubDirectoryReport() argument
786 buildTitleLinksCoveragePrinterHTMLDirectory::Reporter buildTitleLinks() argument
836 buildRelLinkToFileCoveragePrinterHTMLDirectory::Reporter buildRelLinkToFile() argument
/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/
H A DFindAllSymbolsMain.cpp152 clang::find_all_symbols::YamlReporter Reporter; in main() local
/llvm-project/libc/utils/HdrGen/
H A DGenerator.cpp
/llvm-project/clang-tools-extra/clang-move/tool/
H A DClangMove.cpp136 move::DeclarationReporter Reporter; in main() local
/llvm-project/clang-tools-extra/include-cleaner/lib/
H A DHTMLReport.cpp133 class Reporter { global() class
211 Reporter(llvm::raw_ostream &OS, ASTContext &Ctx, const HeaderSearch &HS, Reporter() function in clang::include_cleaner::__anonf7a010870111::Reporter
/llvm-project/clang-tools-extra/unittests/clang-move/
H A DClangMoveTests.cpp208 DeclarationReporter *const Reporter = nullptr) { in runClangMoveOnCode()
614 DeclarationReporter Reporter; in TEST() local
/llvm-project/clang-tools-extra/unittests/clang-include-fixer/find-all-symbols/
H A DFindAllSymbolsTests.cpp138 TestSymbolReporter Reporter; member in clang::find_all_symbols::FindAllSymbolsTest
/llvm-project/clang-tools-extra/clang-tidy/
H A DClangTidy.cpp610 ErrorReporter Reporter(Context, Fix, std::move(BaseFS)); in handleErrors() local
/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp2702 threadSafety::ThreadSafetyReporter Reporter(S, FL, FEL); IssueWarnings() local
2749 CalledOnceCheckReporter Reporter(S, IPData->CalledOnceData); IssueWarnings() local
/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp2845 findValidReport(ArrayRef<PathSensitiveBugReport * > & bugReports,PathSensitiveBugReporter & Reporter) findValidReport() argument