Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp1114 auto SeparateComponents = [](SmallVectorImpl<char> &LookupPath, in LookupEmbedFile()
1117 llvm::sys::path::native(StartingFrom, LookupPath); in LookupEmbedFile()
1119 llvm::sys::path::remove_filename(LookupPath); in LookupEmbedFile()
1120 if (!LookupPath.empty() && in LookupEmbedFile()
1121 !llvm::sys::path::is_separator(LookupPath.back())) { in LookupEmbedFile()
1122 LookupPath.push_back(llvm::sys::path::get_separator().front()); in LookupEmbedFile()
1124 LookupPath.append(FileName.begin(), FileName.end()); in LookupEmbedFile()
1128 SmallString<512> LookupPath; in LookupEmbedFile() local
1135 SeparateComponents(LookupPath, FullFileDir, Filename, true); in LookupEmbedFile()
1137 LookupPath, OpenFile, /*CacheFailure=*/true, /*IsText=*/false); in LookupEmbedFile()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h961 ErrorOr<Status> getExternalStatus(const Twine &LookupPath,
1053 ErrorOr<Status> status(const Twine &LookupPath, const Twine &OriginalPath,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2395 const Twine &LookupPath, const Twine &OriginalPath, in status() argument
2412 return Status::copyWithNewName(DE->getStatus(), LookupPath); in status()
2416 RedirectingFileSystem::getExternalStatus(const Twine &LookupPath, in getExternalStatus() argument
2418 auto Result = ExternalFS->status(LookupPath); in getExternalStatus()