Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp216 SmallString<255> Filepath(LibDir); in populateFromFile() local
217 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()
/llvm-project-15.0.7/clang/lib/Basic/
H A DDarwinSDKInfo.cpp131 llvm::SmallString<256> Filepath = SDKRootPath; in parseDarwinSDKInfo() local
132 llvm::sys::path::append(Filepath, "SDKSettings.json"); in parseDarwinSDKInfo()
134 VFS.getBufferForFile(Filepath); in parseDarwinSDKInfo()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp139 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 …]
/llvm-project-15.0.7/llvm/tools/llvm-reduce/deltas/
H A DDelta.cpp107 static int getLines(StringRef Filepath) { in getLines() argument
110 std::ifstream FileStream{std::string(Filepath)}; in getLines()