Home
last modified time | relevance | path

Searched refs:PrependPathComponent (Results 1 – 7 of 7) sorted by relevance

/llvm-project/lldb/unittests/Utility/
H A DFileSpecTest.cpp123 TEST(FileSpecTest, PrependPathComponent) { in TEST() argument
125 fs_posix.PrependPathComponent("/bar"); in TEST()
129 fs_posix_2.PrependPathComponent("/baz"); in TEST()
133 fs_windows.PrependPathComponent("F:\\bar"); in TEST()
137 fs_posix_root.PrependPathComponent("/"); in TEST()
141 fs_windows_root.PrependPathComponent("F:\\"); in TEST()
448 file.PrependPathComponent("/tmp"); in TEST()
/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h383 void PrependPathComponent(llvm::StringRef component);
384 void PrependPathComponent(const FileSpec &new_path);
/llvm-project/lldb/source/Utility/
H A DFileSpec.cpp433 void FileSpec::PrependPathComponent(llvm::StringRef component) { in PrependPathComponent() function in FileSpec
443 void FileSpec::PrependPathComponent(const FileSpec &new_path) { in PrependPathComponent() function in FileSpec
444 return PrependPathComponent(new_path.GetPath(false)); in PrependPathComponent()
532 PrependPathComponent(dir); in MakeAbsolute()
/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp160 file_spec.PrependPathComponent(llvm::StringRef(buf)); in LocateExecutableSymbolFile()
/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleLoader.cpp30 file_spec.PrependPathComponent(m_bundle_dir); in NormalizePath()
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1822 relative_to_binary.PrependPathComponent( in GetDwoSymbolFileForCompileUnit()
1909 error_dwo_path.PrependPathComponent(comp_dir); in GetDwoSymbolFileForCompileUnit()
/llvm-project/lldb/source/Target/
H A DPlatform.cpp181 resolved_spec.GetFileSpec().PrependPathComponent(m_sdk_sysroot); in GetSharedModule()