Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Target/
H A DPathMappingList.cpp33 std::string NormalizePath(llvm::StringRef path) { in NormalizePath() function
63 m_pairs.emplace_back(pair(NormalizePath(path), NormalizePath(replacement))); in Append()
87 m_pairs.emplace(insert_iter, pair(NormalizePath(path), in Insert()
88 NormalizePath(replacement))); in Insert()
98 m_pairs[index] = pair(NormalizePath(path), NormalizePath(replacement)); in Replace()
220 if (auto remapped = RemapPath(NormalizePath(orig_spec.GetPath()), in FindFile()
289 const ConstString path = ConstString(NormalizePath(orig_path)); in FindIndexForPath()
/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleLoader.cpp25 FileSpec TraceIntelPTBundleLoader::NormalizePath(const std::string &path) { in NormalizePath() function in TraceIntelPTBundleLoader
299 module.system_path = NormalizePath(module.system_path).GetPath(); in NormalizeAllPaths()
301 module.file = NormalizePath(*module.file).GetPath(); in NormalizeAllPaths()
305 thread.ipt_trace = NormalizePath(*thread.ipt_trace).GetPath(); in NormalizeAllPaths()
311 NormalizePath(cpu.context_switch_trace).GetPath(); in NormalizeAllPaths()
312 cpu.ipt_trace = NormalizePath(cpu.ipt_trace).GetPath(); in NormalizeAllPaths()
H A DTraceIntelPTBundleLoader.h56 FileSpec NormalizePath(const std::string &path);
/llvm-project-15.0.7/llvm/unittests/Support/
H A DPath.cpp1445 TEST(Support, NormalizePath) { in TEST() argument