Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp52 std::string raw_path = lldb_shlib_spec.GetPath(); in DefaultComputeClangResourceDirectory() local
53 llvm::StringRef parent_dir = llvm::sys::path::parent_path(raw_path); in DefaultComputeClangResourceDirectory()
90 std::string raw_path = lldb_shlib_spec.GetPath(); in ComputeClangResourceDirectory()
92 auto rev_it = llvm::sys::path::rbegin(raw_path); in ComputeClangResourceDirectory()
93 auto r_end = llvm::sys::path::rend(raw_path); in ComputeClangResourceDirectory()
117 raw_path.resize(parent - r_end); in ComputeClangResourceDirectory()
118 llvm::sys::path::append(clang_path, raw_path, in ComputeClangResourceDirectory()
134 raw_path.resize(parent - r_end); in ComputeClangResourceDirectory()
135 llvm::sys::path::append(clang_path, raw_path, swift_clang_resource_dir); in ComputeClangResourceDirectory()
145 raw_path = lldb_shlib_spec.GetPath(); in ComputeClangResourceDirectory()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Host/macosx/objcxx/
H A DHostInfoMacOSX.mm129 std::string raw_path = lldb_file_spec.GetPath();
131 size_t framework_pos = raw_path.find("LLDB.framework");
136 raw_path.resize(framework_pos);
139 raw_path.resize(framework_pos);
140 raw_path.append("/Resources");
150 raw_path.append("/../bin");
151 FileSpec support_dir_spec(raw_path);
165 raw_path = dir_realpath;
168 raw_path = support_dir_spec.GetPath();
172 file_spec.SetDirectory(raw_path);
[all …]
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DHostInfoBase.cpp227 std::string raw_path = lldb_file_spec.GetPath(); in ComputePathRelativeToLibrary() local
231 __FUNCTION__, dir.data(), raw_path.c_str()); in ComputePathRelativeToLibrary()
234 llvm::StringRef parent_path = llvm::sys::path::parent_path(raw_path); in ComputePathRelativeToLibrary()
243 raw_path = (parent_path + dir).str(); in ComputePathRelativeToLibrary()
245 raw_path.c_str()); in ComputePathRelativeToLibrary()
246 file_spec.SetDirectory(raw_path); in ComputePathRelativeToLibrary()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dglobals.py18 def get_globals(raw_path, options): argument
21 path = os.path.expanduser(raw_path)
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp698 char raw_path[PATH_MAX]; in ReadImageInfos() local
699 m_process->ReadCStringFromMemory(path_addr, raw_path, sizeof(raw_path), in ReadImageInfos()
703 image_infos[i].file_spec.SetFile(raw_path, FileSpec::Style::native); in ReadImageInfos()