Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DWinCodeViewLineTables.cpp39 std::string Filepath; in getFullFilepath() local
41 Filepath = Filename; in getFullFilepath()
43 Filepath = (Dir + Twine("\\") + Filename).str(); in getFullFilepath()
48 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath()
52 while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos) in getFullFilepath()
53 Filepath.erase(Cursor, 2); in getFullFilepath()
58 while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) { in getFullFilepath()
63 size_t PrevSlash = Filepath.rfind('\\', Cursor - 1); in getFullFilepath()
68 Filepath.erase(PrevSlash, Cursor + 3 - PrevSlash); in getFullFilepath()
75 while ((Cursor = Filepath.find("\\\\", Cursor)) != std::string::npos) in getFullFilepath()
[all …]