Home
last modified time | relevance | path

Searched refs:OutputDir (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/tools/scan-build/bin/
H A Dscan-build1040 my $OutputDir = $EnvVars->{"OUTPUT_DIR"};
1047 "CLANG_ANALYZER_OUTPUT_DIR=$OutputDir",
1561 if (defined($Options{OutputDir})) {
1575 $Options{OutputDir} = abs_path($OutDir);
1581 if (defined($Options{OutputDir})) {
1595 $Options{OutputDir} = abs_path($OutDir);
1862 Finalize($Options{OutputDir}, 0);
1874 my $BaseDir = $Options{OutputDir};
1875 $Options{OutputDir} = GetHTMLRunDir($Options{OutputDir});
1916 SetHtmlEnv(\@ARGV, $Options{OutputDir});
[all …]
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp74 const std::string &OutputDir, const Preprocessor &pp, in HTMLDiagnostics() argument
76 : DiagOpts(std::move(DiagOpts)), Directory(OutputDir), PP(pp), in HTMLDiagnostics()
175 const std::string &OutputDir, const Preprocessor &PP, in createHTMLDiagnosticConsumer() argument
184 createTextMinimalPathDiagnosticConsumer(DiagOpts, C, OutputDir, PP, CTU, in createHTMLDiagnosticConsumer()
188 if (OutputDir.empty()) in createHTMLDiagnosticConsumer()
191 C.push_back(new HTMLDiagnostics(std::move(DiagOpts), OutputDir, PP, true)); in createHTMLDiagnosticConsumer()
196 const std::string &OutputDir, const Preprocessor &PP, in createHTMLSingleFileDiagnosticConsumer() argument
199 createTextMinimalPathDiagnosticConsumer(DiagOpts, C, OutputDir, PP, CTU, in createHTMLSingleFileDiagnosticConsumer()
203 if (OutputDir.empty()) in createHTMLSingleFileDiagnosticConsumer()
206 C.push_back(new HTMLDiagnostics(std::move(DiagOpts), OutputDir, PP, false)); in createHTMLSingleFileDiagnosticConsumer()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/tool/
H A DFindAllSymbolsMain.cpp52 static cl::opt<std::string> OutputDir("output-dir", cl::desc(R"( variable
71 OutputDir + "/" + llvm::sys::path::filename(FileName) + "-%%%%%%.yaml", in reportSymbols()
/llvm-project-15.0.7/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp256 static std::string OutputDir; variable
475 if (!OutputDir.empty()) { in parseCommandLine()
482 if (!sys::fs::create_directories(OutputDir)) in parseCommandLine()
483 sys::fs::is_directory(OutputDir, IsDir); in parseCommandLine()
485 fail("'" + OutputDir + "' is not a directory"); in parseCommandLine()
590 if (OutputDir.empty()) { in doExtract()
593 sys::path::append(path, OutputDir, sys::path::filename(Name)); in doExtract()
1381 OutputDir = Match; in ar_main()
/llvm-project-15.0.7/llvm/lib/Passes/
H A DStandardInstrumentations.cpp2057 SmallString<128> OutputDir; in registerCallbacks() local
2058 sys::fs::expand_tilde(DotCfgDir, OutputDir); in registerCallbacks()
2059 sys::fs::make_absolute(OutputDir); in registerCallbacks()
2060 assert(!OutputDir.empty() && "expected output dir to be non-empty"); in registerCallbacks()
2061 DotCfgDir = OutputDir.c_str(); in registerCallbacks()