Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp77 const std::string &OutputDir, const Preprocessor &pp, in HTMLDiagnostics() argument
79 : DiagOpts(std::move(DiagOpts)), Directory(OutputDir), PP(pp), in HTMLDiagnostics()
178 const std::string &OutputDir, const Preprocessor &PP, in createHTMLDiagnosticConsumer() argument
187 createTextMinimalPathDiagnosticConsumer(DiagOpts, C, OutputDir, PP, CTU, in createHTMLDiagnosticConsumer()
191 if (OutputDir.empty()) in createHTMLDiagnosticConsumer()
194 C.push_back(new HTMLDiagnostics(std::move(DiagOpts), OutputDir, PP, true)); in createHTMLDiagnosticConsumer()
199 const std::string &OutputDir, const Preprocessor &PP, in createHTMLSingleFileDiagnosticConsumer() argument
202 createTextMinimalPathDiagnosticConsumer(DiagOpts, C, OutputDir, PP, CTU, in createHTMLSingleFileDiagnosticConsumer()
206 if (OutputDir.empty()) in createHTMLSingleFileDiagnosticConsumer()
209 C.push_back(new HTMLDiagnostics(std::move(DiagOpts), OutputDir, PP, false)); in createHTMLSingleFileDiagnosticConsumer()
/freebsd/contrib/llvm-project/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp252 static std::string OutputDir; variable
471 if (!OutputDir.empty()) { in parseCommandLine()
478 if (!sys::fs::create_directories(OutputDir)) in parseCommandLine()
479 sys::fs::is_directory(OutputDir, IsDir); in parseCommandLine()
481 fail("'" + OutputDir + "' is not a directory"); in parseCommandLine()
586 if (OutputDir.empty()) { in doExtract()
589 sys::path::append(path, OutputDir, sys::path::filename(Name)); in doExtract()
1398 OutputDir = Match; in ar_main()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp2431 SmallString<128> OutputDir; in registerCallbacks() local
2432 sys::fs::expand_tilde(DotCfgDir, OutputDir); in registerCallbacks()
2433 sys::fs::make_absolute(OutputDir); in registerCallbacks()
2434 assert(!OutputDir.empty() && "expected output dir to be non-empty"); in registerCallbacks()
2435 DotCfgDir = OutputDir.c_str(); in registerCallbacks()