Home
last modified time | relevance | path

Searched refs:current_path (Results 1 – 25 of 29) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DFileSpec.cpp425 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 Doperations.h91 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 Dfilesystem313 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 DProcessLaunchInfo.cpp278 if (! llvm::sys::fs::current_path(cwd)) in ConvertArgumentsForLaunchingInShell()
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dpython.rst212 >>> 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 Dlldb-gdbserver.cpp152 if (std::error_code ec = llvm::sys::fs::current_path(cwd)) { in handle_launch()
/openbsd-src/gnu/llvm/clang/lib/Driver/
H A DJob.cpp172 std::error_code EC = fs::current_path(OutInc); in rewriteIncludes()
/openbsd-src/gnu/llvm/llvm/tools/llvm-ml/
H A Dllvm-ml.cpp347 if (!sys::fs::current_path(CWD)) in main()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp444 if (std::error_code ec = llvm::sys::fs::current_path(cwd)) in Handle_qGetWorkingDir()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DTargetList.cpp296 if (! llvm::sys::fs::current_path(cwd)) { in CreateTargetInternal()
/openbsd-src/gnu/llvm/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp480 if (!sys::fs::current_path(CWD)) in main()
/openbsd-src/gnu/llvm/clang/tools/driver/
H A Dcc1as_main.cpp472 if (!sys::fs::current_path(CWD)) in ExecuteAssemblerImpl()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandCompletions.cpp398 llvm::sys::fs::current_path(Storage); in DiskFilesOrDirectories()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DFileSystem.h360 std::error_code current_path(SmallVectorImpl<char> &result);
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp550 llvm::sys::fs::current_path(DirName); in FinalizeHTML()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp676 sys::fs::current_path(CacheDir); in MCJITObjectCache()
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp695 sys::fs::current_path(CacheDir); in MCJITObjectCache()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DPath.inc88 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 DPath.cpp960 if (std::error_code ec = current_path(current_dir)) in make_absolute()
H A DVirtualFileSystem.cpp260 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 DResourceFileWriter.cpp1531 sys::fs::current_path(Cwd); in loadFile()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp546 if (sys::fs::current_path(CurPath)) in mangleName()
/openbsd-src/gnu/llvm/lld/MachO/
H A DOptions.td900 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 DCoverageMappingGen.cpp1592 llvm::sys::fs::current_path(CWD); in getCurrentDirname()
/openbsd-src/gnu/llvm/lld/COFF/
H A DPDB.cpp1430 sys::fs::current_path(cwd); in addCommonLinkerModuleSymbols()

12