Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp224 SmallString<255> Filepath(LibDir); in populateFromFile() local
225 sys::path::append(Filepath, LibName); in populateFromFile()
226 if (!sys::fs::exists(Filepath)) { in populateFromFile()
227 WithColor::warning() << StringRef(Filepath) << ": not found\n"; in populateFromFile()
230 outs() << "\nLooking for symbols in '" << StringRef(Filepath) << "'\n"; in populateFromFile()
231 auto ExpectedBinary = createBinary(Filepath); in populateFromFile()
245 WithColor::warning() << StringRef(Filepath) in populateFromFile()
250 WithColor::warning() << StringRef(Filepath) << ": no symbols found\n"; in populateFromFile()
253 << StringRef(Filepath) << "'\n"; in populateFromFile()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp157 llvm::SmallString<256> Filepath = SDKRootPath; in parseDarwinSDKInfo() local
158 llvm::sys::path::append(Filepath, "SDKSettings.json"); in parseDarwinSDKInfo()
160 VFS.getBufferForFile(Filepath); in parseDarwinSDKInfo()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp139 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath() local
140 if (!Filepath.empty()) in getFullFilepath()
141 return Filepath; in getFullFilepath()
150 Filepath = std::string(Dir); in getFullFilepath()
152 Filepath += '/'; in getFullFilepath()
153 Filepath += Filename; in getFullFilepath()
154 return Filepath; in getFullFilepath()
162 Filepath = std::string(Filename); in getFullFilepath()
164 Filepath = (Dir + "\\" + Filename).str(); in getFullFilepath()
169 llvm::replace(Filepath, '/', '\\'); in getFullFilepath()
[all …]