Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp53 std::string raw_path = lldb_shlib_spec.GetPath(); in DefaultComputeClangResourceDirectory() local
54 llvm::StringRef parent_dir = llvm::sys::path::parent_path(raw_path); in DefaultComputeClangResourceDirectory()
95 std::string raw_path = lldb_shlib_spec.GetPath(); in ComputeClangResourceDirectory()
97 auto rev_it = llvm::sys::path::rbegin(raw_path); in ComputeClangResourceDirectory()
98 auto r_end = llvm::sys::path::rend(raw_path); in ComputeClangResourceDirectory()
122 raw_path.resize(parent - r_end); in ComputeClangResourceDirectory()
123 llvm::sys::path::append(clang_path, raw_path, in ComputeClangResourceDirectory()
139 raw_path.resize(parent - r_end); in ComputeClangResourceDirectory()
140 llvm::sys::path::append(clang_path, raw_path, swift_clang_resource_dir); in ComputeClangResourceDirectory()
150 raw_path = lldb_shlib_spec.GetPath(); in ComputeClangResourceDirectory()
[all …]
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_write_format_zip_windows_path.c32 static const char *raw_path = "dir_stored\\dir1/file"; in test_with_hdrcharset() local
56 archive_entry_copy_pathname(ae, raw_path); in test_with_hdrcharset()
73 const char *unexpected = raw_path; in test_with_hdrcharset()
75 const char *expected = raw_path; in test_with_hdrcharset()
80 size_t len = strlen(raw_path); in test_with_hdrcharset()
/freebsd/contrib/kyua/engine/
H A Dkyuafile.cpp326 const fs::path& raw_path, in callback_test_program() argument
332 if (raw_path.is_absolute()) in callback_test_program()
334 "program '%s'") % raw_path); in callback_test_program()
335 else if (raw_path.str() != raw_path.leaf_name()) in callback_test_program()
337 "components") % raw_path); in callback_test_program()
340 raw_path); in callback_test_program()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHostInfoBase.cpp227 std::string raw_path = lldb_file_spec.GetPath(); in ComputePathRelativeToLibrary() local
231 dir, raw_path); in ComputePathRelativeToLibrary()
234 llvm::StringRef parent_path = llvm::sys::path::parent_path(raw_path); in ComputePathRelativeToLibrary()
240 raw_path = (parent_path + dir).str(); in ComputePathRelativeToLibrary()
241 LLDB_LOG(log, "Derived the path as: {0}", raw_path); in ComputePathRelativeToLibrary()
242 file_spec.SetDirectory(raw_path); in ComputePathRelativeToLibrary()