Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp229 SmallString<255> Filepath(LibDir); in populateFromFile() local
230 sys::path::append(Filepath, LibName); in populateFromFile()
231 if (!sys::fs::exists(Filepath)) { in populateFromFile()
232 WithColor::warning() << StringRef(Filepath) << ": not found\n"; in populateFromFile()
235 outs() << "\nLooking for symbols in '" << StringRef(Filepath) << "'\n"; in populateFromFile()
236 auto ExpectedBinary = createBinary(Filepath); in populateFromFile()
250 WithColor::warning() << StringRef(Filepath) in populateFromFile()
255 WithColor::warning() << StringRef(Filepath) << ": no symbols found\n"; in populateFromFile()
258 << StringRef(Filepath) << "'\n"; in populateFromFile()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp136 std::string &Filepath = FileToFilepathMap[File]; in getFullFilepath() local
137 if (!Filepath.empty()) in getFullFilepath()
138 return Filepath; in getFullFilepath()
147 Filepath = std::string(Dir); in getFullFilepath()
149 Filepath += '/'; in getFullFilepath()
150 Filepath += Filename; in getFullFilepath()
151 return Filepath; in getFullFilepath()
159 Filepath = std::string(Filename); in getFullFilepath()
161 Filepath = (Dir + "\\" + Filename).str(); in getFullFilepath()
166 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); in getFullFilepath()
[all …]