Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/AsmPrinter/
DWinCodeViewLineTables.cpp30 std::string &Filepath = in getFullFilepath() local
32 if (!Filepath.empty()) in getFullFilepath()
33 return Filepath; in getFullFilepath()
40 Filepath = Filename; in getFullFilepath()
42 Filepath = (Dir + "\\" + Filename).str(); in getFullFilepath()
47 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath()
51 while ((Cursor = Filepath.find("\\.\\", Cursor)) != std::string::npos) in getFullFilepath()
52 Filepath.erase(Cursor, 2); in getFullFilepath()
57 while ((Cursor = Filepath.find("\\..\\", Cursor)) != std::string::npos) { in getFullFilepath()
62 size_t PrevSlash = Filepath.rfind('\\', Cursor - 1); in getFullFilepath()
[all …]