Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/tools/lldb-rpc/lldb-rpc-gen/
H A Dlldb-rpc-gen.cpp39 OutputDir("output-dir", variable
44 llvm::SmallString<128> Path(OutputDir.getValue()); in GetLibraryOutputDirectory()
50 CreateOutputFile(llvm::StringRef OutputDir, llvm::StringRef Filename) { in CreateOutputFile() argument
51 llvm::SmallString<128> Path(OutputDir); in CreateOutputFile()
313 CreateOutputFile(OutputDir.getValue(), ClassNamesFileName); in EmitClassNamesFile()
339 CreateOutputFile(OutputDir.getValue(), MethodNamesFileName); in EmitMethodNamesFile()
357 CreateOutputFile(OutputDir.getValue(), FileName); in EmitSkippedMethodsFile()
378 if (OutputDir.empty()) { in main()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp73 const std::string &OutputDir, const Preprocessor &pp, in HTMLDiagnostics() argument
75 : DiagOpts(std::move(DiagOpts)), Directory(OutputDir), PP(pp), in HTMLDiagnostics()
174 const std::string &OutputDir, const Preprocessor &PP, in createHTMLDiagnosticConsumer() argument
183 createTextMinimalPathDiagnosticConsumer(DiagOpts, C, OutputDir, PP, CTU, in createHTMLDiagnosticConsumer()
187 if (OutputDir.empty()) in createHTMLDiagnosticConsumer()
191 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()
207 OutputDir, PP, false)); in createHTMLSingleFileDiagnosticConsumer()
/freebsd/contrib/llvm-project/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp751 static std::string constructPCMPath(ModuleID MID, StringRef OutputDir) { in constructPCMPath() argument
752 SmallString<256> ExplicitPCMPath(OutputDir); in constructPCMPath()
760 StringRef OutputDir) { in lookupModuleOutput() argument
761 std::string PCMPath = constructPCMPath(MD.ID, OutputDir); in lookupModuleOutput()
1022 std::string OutputDir(ModuleFilesDir); in clang_scan_deps_main() local
1023 if (OutputDir.empty()) in clang_scan_deps_main()
1024 OutputDir = getModuleCachePath(Input->CommandLine); in clang_scan_deps_main()
1026 return ::lookupModuleOutput(MD, MOK, OutputDir); in clang_scan_deps_main()
/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.cpp2424 SmallString<128> OutputDir; in registerCallbacks() local
2425 sys::fs::expand_tilde(DotCfgDir, OutputDir); in registerCallbacks()
2426 sys::fs::make_absolute(OutputDir); in registerCallbacks()
2427 assert(!OutputDir.empty() && "expected output dir to be non-empty"); in registerCallbacks()
2428 DotCfgDir = OutputDir.c_str(); in registerCallbacks()