| /openbsd-src/gnu/llvm/lldb/source/Utility/ |
| H A D | FileSpec.cpp | 425 llvm::SmallString<64> current_path; in CopyByRemovingLastPathComponent() local 426 GetPath(current_path, false); in CopyByRemovingLastPathComponent() 427 if (llvm::sys::path::has_parent_path(current_path, m_style)) in CopyByRemovingLastPathComponent() 428 return FileSpec(llvm::sys::path::parent_path(current_path, m_style), in CopyByRemovingLastPathComponent() 434 llvm::SmallString<64> current_path; in GetLastPathComponent() local 435 GetPath(current_path, false); in GetLastPathComponent() 436 return ConstString(llvm::sys::path::filename(current_path, m_style)); in GetLastPathComponent() 441 llvm::SmallString<64> current_path; in PrependPathComponent() local 442 GetPath(current_path, false); in PrependPathComponent() 444 llvm::sys::path::begin(current_path, m_style), in PrependPathComponent() [all …]
|
| /openbsd-src/gnu/llvm/libcxx/include/__filesystem/ |
| H A D | operations.h | 91 inline _LIBCPP_HIDE_FROM_ABI path current_path() { return __current_path(); } in current_path() function 92 inline _LIBCPP_HIDE_FROM_ABI path current_path(error_code& __ec) { return __current_path(&__ec); } in current_path() function 93 inline _LIBCPP_HIDE_FROM_ABI void current_path(const path& __p) { __current_path(__p); } in current_path() function 94 inline _LIBCPP_HIDE_FROM_ABI void current_path(const path& __p, error_code& __ec) noexcept { __curr… in current_path() function 158 … path proximate(const path& __p, error_code& __ec) { return proximate(__p, current_path(), __ec); } in proximate() 159 inline _LIBCPP_HIDE_FROM_ABI path proximate(const path& __p, const path& __base = current_path()) {… 173 …BI path relative(const path& __p, error_code& __ec) { return relative(__p, current_path(), __ec); } in relative() 174 inline _LIBCPP_HIDE_FROM_ABI path relative(const path& __p, const path& __base = current_path()) { …
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | filesystem | 313 path current_path(); 314 path current_path(error_code& ec); 315 void current_path(const path& p); 316 void current_path(const path& p, error_code& ec) noexcept; 379 path proximate(const path& p, const path& base = current_path()); 386 path relative(const path& p, const path& base=current_path());
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | ProcessLaunchInfo.cpp | 278 if (! llvm::sys::fs::current_path(cwd)) in ConvertArgumentsForLaunchingInShell()
|
| /openbsd-src/gnu/llvm/lldb/docs/use/ |
| H A D | python.rst | 212 >>> current_path = "" 213 >>> path = tree_utils.DFS (root, "Romeo", current_path) 247 current_path = "" 249 This line initializes the current_path from the root of the tree to our current 256 path = tree_utils.DFS (root, "Romeo", current_path)
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-server/ |
| H A D | lldb-gdbserver.cpp | 152 if (std::error_code ec = llvm::sys::fs::current_path(cwd)) { in handle_launch()
|
| /openbsd-src/gnu/llvm/clang/lib/Driver/ |
| H A D | Job.cpp | 172 std::error_code EC = fs::current_path(OutInc); in rewriteIncludes()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-ml/ |
| H A D | llvm-ml.cpp | 347 if (!sys::fs::current_path(CWD)) in main()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerPlatform.cpp | 444 if (std::error_code ec = llvm::sys::fs::current_path(cwd)) in Handle_qGetWorkingDir()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | TargetList.cpp | 296 if (! llvm::sys::fs::current_path(cwd)) { in CreateTargetInternal()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-mc/ |
| H A D | llvm-mc.cpp | 480 if (!sys::fs::current_path(CWD)) in main()
|
| /openbsd-src/gnu/llvm/clang/tools/driver/ |
| H A D | cc1as_main.cpp | 472 if (!sys::fs::current_path(CWD)) in ExecuteAssemblerImpl()
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandCompletions.cpp | 398 llvm::sys::fs::current_path(Storage); in DiskFilesOrDirectories()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | FileSystem.h | 360 std::error_code current_path(SmallVectorImpl<char> &result);
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | HTMLDiagnostics.cpp | 550 llvm::sys::fs::current_path(DirName); in FinalizeHTML()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/ |
| H A D | toy.cpp | 676 sys::fs::current_path(CacheDir); in MCJITObjectCache()
|
| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/ |
| H A D | toy.cpp | 695 sys::fs::current_path(CacheDir); in MCJITObjectCache()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 88 CurPathLen = 0; // No contribution from current_path needed. 198 std::error_code current_path(SmallVectorImpl<char> &result) {
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | Path.cpp | 960 if (std::error_code ec = current_path(current_dir)) in make_absolute()
|
| H A D | VirtualFileSystem.cpp | 260 if (llvm::sys::fs::current_path(PWD)) in RealFileSystem() 330 if (std::error_code EC = llvm::sys::fs::current_path(Dir)) in getCurrentWorkingDirectory()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rc/ |
| H A D | ResourceFileWriter.cpp | 1531 sys::fs::current_path(Cwd); in loadFile()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| H A D | GCOVProfiling.cpp | 546 if (sys::fs::current_path(CurPath)) in mangleName()
|
| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | Options.td | 900 MetaVarName<"<install_path:current_path>">, 901 …HelpText<"Specify <current_path> as different from where a dylib normally resides at <install_path…
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 1592 llvm::sys::fs::current_path(CWD); in getCurrentDirname()
|
| /openbsd-src/gnu/llvm/lld/COFF/ |
| H A D | PDB.cpp | 1430 sys::fs::current_path(cwd); in addCommonLinkerModuleSymbols()
|