Searched refs:Filepath (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 54 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 …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 111 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath() local 112 if (!Filepath.empty()) in getFullFilepath() 113 return Filepath; in getFullFilepath() 120 Filepath = Dir; in getFullFilepath() 122 Filepath += '/'; in getFullFilepath() 123 Filepath += Filename; in getFullFilepath() 124 return Filepath; in getFullFilepath() 132 Filepath = Filename; in getFullFilepath() 134 Filepath = (Dir + "\\" + Filename).str(); in getFullFilepath() 139 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath() [all …]
|