Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DPathMappingList.h62 bool RemapPath(ConstString path, ConstString &new_path) const;
84 llvm::Optional<FileSpec> RemapPath(llvm::StringRef path,
86 bool RemapPath(const char *, std::string &) const = delete;
/llvm-project-15.0.7/lldb/source/Target/
H A DPathMappingList.cpp142 bool PathMappingList::RemapPath(ConstString path, in RemapPath() function in PathMappingList
144 if (llvm::Optional<FileSpec> remapped = RemapPath(path.GetStringRef())) { in RemapPath()
164 PathMappingList::RemapPath(llvm::StringRef mapping_path, in RemapPath() function in PathMappingList
220 if (auto remapped = RemapPath(NormalizePath(orig_spec.GetPath()), in FindFile()
H A DTarget.cpp2088 if (m_image_search_paths.RemapPath( in GetOrCreateModule()
/llvm-project-15.0.7/lldb/unittests/Target/
H A DPathMappingListTest.cpp33 EXPECT_FALSE(map.RemapPath(fail, actual_remapped)) in TestPathMappings()
40 map.RemapPath(ConstString(match.original.GetPath()), actual_remapped)); in TestPathMappings()
/llvm-project-15.0.7/lldb/source/Core/
H A DModule.cpp1624 if (auto remapped = m_source_mappings.RemapPath(path)) in RemapSourceFile()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGDebugInfo.cpp2746 auto RemapPath = [this](StringRef Path) -> std::string { in getOrCreateModuleRef() local
2776 TheCU->getProducer(), false, StringRef(), 0, RemapPath(PCM), in getOrCreateModuleRef()
2788 RemapPath(IncludePath)); in getOrCreateModuleRef()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectTarget.cpp1263 if (target->GetImageSearchPathList().RemapPath(orig, transformed)) in DoExecute()