Searched refs:Filepath (Results 1 – 1 of 1) sorted by relevance
54 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath() local55 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 …]