Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp222 SmallString<255> Filepath(LibDir); in populateFromFile() local
223 sys::path::append(Filepath, LibName); in populateFromFile()
224 if (!sys::fs::exists(Filepath)) { in populateFromFile()
225 WithColor::warning() << StringRef(Filepath) << ": not found\n"; in populateFromFile()
228 outs() << "\nLooking for symbols in '" << StringRef(Filepath) << "'\n"; in populateFromFile()
229 auto ExpectedBinary = createBinary(Filepath); in populateFromFile()
243 WithColor::warning() << StringRef(Filepath) in populateFromFile()
248 WithColor::warning() << StringRef(Filepath) << ": no symbols found\n"; in populateFromFile()
251 << StringRef(Filepath) << "'\n"; in populateFromFile()
/freebsd-src/contrib/llvm-project/clang/lib/Basic/
H A DDarwinSDKInfo.cpp133 llvm::SmallString<256> Filepath = SDKRootPath; in parseDarwinSDKInfo() local
134 llvm::sys::path::append(Filepath, "SDKSettings.json"); in parseDarwinSDKInfo()
136 VFS.getBufferForFile(Filepath); in parseDarwinSDKInfo()
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp137 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath() local
138 if (!Filepath.empty()) in getFullFilepath()
139 return Filepath; in getFullFilepath()
148 Filepath = std::string(Dir); in getFullFilepath()
150 Filepath += '/'; in getFullFilepath()
151 Filepath += Filename; in getFullFilepath()
152 return Filepath; in getFullFilepath()
160 Filepath = std::string(Filename); in getFullFilepath()
162 Filepath = (Dir + "\\" + Filename).str(); in getFullFilepath()
167 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath()
[all …]