Searched refs:Filepath (Results 1 – 4 of 4) sorted by relevance
216 SmallString<255> Filepath(LibDir); in populateFromFile() local217 sys::path::append(Filepath, LibName); in populateFromFile()218 if (!sys::fs::exists(Filepath)) { in populateFromFile()219 WithColor::warning() << StringRef(Filepath) << ": not found\n"; in populateFromFile()222 outs() << "\nLooking for symbols in '" << StringRef(Filepath) << "'\n"; in populateFromFile()223 auto ExpectedBinary = createBinary(Filepath); in populateFromFile()237 WithColor::warning() << StringRef(Filepath) in populateFromFile()242 WithColor::warning() << StringRef(Filepath) << ": no symbols found\n"; in populateFromFile()245 << StringRef(Filepath) << "'\n"; in populateFromFile()
131 llvm::SmallString<256> Filepath = SDKRootPath; in parseDarwinSDKInfo() local132 llvm::sys::path::append(Filepath, "SDKSettings.json"); in parseDarwinSDKInfo()134 VFS.getBufferForFile(Filepath); in parseDarwinSDKInfo()
139 if (!Filepath.empty()) in getFullFilepath()140 return Filepath; in getFullFilepath()149 Filepath = std::string(Dir); in getFullFilepath()151 Filepath += '/'; in getFullFilepath()152 Filepath += Filename; in getFullFilepath()153 return Filepath; in getFullFilepath()161 Filepath = std::string(Filename); in getFullFilepath()168 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath()173 Filepath.erase(Cursor, 2); in getFullFilepath()196 Filepath.erase(Cursor, 1); in getFullFilepath()[all …]
107 static int getLines(StringRef Filepath) { in getLines() argument110 std::ifstream FileStream{std::string(Filepath)}; in getLines()