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.cpp222 SmallString<255> Filepath(LibDir); in populateFromArchive()
223 sys::path::append(Filepath, LibName); in populateFromArchive()
224 if (!sys::fs::exists(Filepath)) { in populateFromArchive()
225 WithColor::warning() << StringRef(Filepath) << ": not found\n";
228 outs() << "\nLooking for symbols in '" << StringRef(Filepath) << "'\n"; in populateFromFile()
229 auto ExpectedBinary = createBinary(Filepath); in populateFromFile() local
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/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/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp137 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath()
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 in getFullFilepath()
136 std::string &Filepath = FileToFilepathMap[File]; getFullFilepath() local
[all...]