Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp54 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath() local
55 if (!Filepath.empty()) in getFullFilepath()
56 return Filepath; in getFullFilepath()
65 Filepath = Filename; in getFullFilepath()
67 Filepath = (Dir + "\\" + Filename).str(); in getFullFilepath()
72 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath()
76 while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos) in getFullFilepath()
77 Filepath.erase(Cursor, 2); in getFullFilepath()
82 while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) { in getFullFilepath()
87 size_t PrevSlash = Filepath.rfind('\\', Cursor - 1); in getFullFilepath()
[all …]