Searched refs:VFSOverlayFiles (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | ModuleDepCollector.cpp | 62 std::vector<std::string> VFSOverlayFiles; in optimizeHeaderSearchOpts() local 63 std::swap(Opts.VFSOverlayFiles, VFSOverlayFiles); in optimizeHeaderSearchOpts() 65 llvm::BitVector VFSUsage(VFSOverlayFiles.size()); in optimizeHeaderSearchOpts() 83 for (std::size_t I = 0, E = VFSOverlayFiles.size(); I != E; ++I) { in optimizeHeaderSearchOpts() 84 if (VFSMap->second.contains(VFSOverlayFiles[I])) in optimizeHeaderSearchOpts() 91 if (VFSUsage.size() != VFSOverlayFiles.size()) in optimizeHeaderSearchOpts() 96 Opts.VFSOverlayFiles.push_back(std::move(VFSOverlayFiles[Idx])); in optimizeHeaderSearchOpts()
|
H A D | DependencyScanningWorker.cpp | 69 if (HSOpts.VFSOverlayFiles != ExistingHSOpts.VFSOverlayFiles) { in checkHeaderSearchPaths() 80 VFSNote(0, HSOpts.VFSOverlayFiles); in checkHeaderSearchPaths() 81 VFSNote(1, ExistingHSOpts.VFSOverlayFiles); in checkHeaderSearchPaths() 118 std::vector<std::string> VFSOverlayFiles = HSOpts.VFSOverlayFiles; in ReadHeaderSearchPaths() local 120 {CurrentFile, llvm::StringSet<>(VFSOverlayFiles)}); in ReadHeaderSearchPaths()
|
/freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
H A D | HeaderSearchOptions.h | 191 std::vector<std::string> VFSOverlayFiles; variable 304 VFSOverlayFiles.push_back(std::string(Name)); in AddVFSOverlayFile()
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | CompilerInvocation.h | 411 createVFSFromOverlayFiles(ArrayRef<std::string> VFSOverlayFiles,
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | ASTUnit.cpp | 569 llvm::SaveAndRestore Z(this->HSOpts.VFSOverlayFiles); in ReadHeaderSearchOptions() 585 this->HSOpts.VFSOverlayFiles = HSOpts.VFSOverlayFiles; in ReadHeaderSearchPaths() 591 HSOpts.VFSOverlayFiles, PP.getDiagnostics(), in ReadHeaderSearchPaths()
|
H A D | CompilerInvocation.cpp | 3246 for (const std::string &F : Opts.VFSOverlayFiles) in GenerateHeaderSearchArgs() 4883 createVFSFromOverlayFiles(Res.getHeaderSearchOpts().VFSOverlayFiles, in CreateFromArgsImpl() 4975 HBuilder.addRange(hsOpts.VFSOverlayFiles); in getModuleHash() 5095 return createVFSFromOverlayFiles(CI.getHeaderSearchOpts().VFSOverlayFiles, in createVFSFromCompilerInvocation() 5100 ArrayRef<std::string> VFSOverlayFiles, DiagnosticsEngine &Diags, in createVFSFromOverlayFiles() argument 5102 if (VFSOverlayFiles.empty()) in createVFSFromOverlayFiles() 5107 for (const auto &File : VFSOverlayFiles) { in createVFSFromOverlayFiles()
|
H A D | CompilerInstance.cpp | 264 if (CI.getHeaderSearchOpts().VFSOverlayFiles.empty()) in collectVFSEntries() 269 for (const std::string &VFSFile : CI.getHeaderSearchOpts().VFSOverlayFiles) { in collectVFSEntries()
|
H A D | FrontendActions.cpp | 714 for (const auto &Overlay : HSOpts.VFSOverlayFiles) in ReadHeaderSearchPaths()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | HeaderSearch.cpp | 160 assert(VFSUsage.size() == getHeaderSearchOpts().VFSOverlayFiles.size() && in collectVFSUsageAndClear()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 1358 Record.push_back(HSOpts.VFSOverlayFiles.size()); in writeUnhashedControlBlock() 1359 for (StringRef VFSOverlayFile : HSOpts.VFSOverlayFiles) in writeUnhashedControlBlock() 4990 PP->getHeaderSearchInfo().getHeaderSearchOpts().VFSOverlayFiles) in computeNonAffectingInputFiles()
|
H A D | ASTReader.cpp | 6165 HSOpts.VFSOverlayFiles.emplace_back(std::move(VFSOverlayFile)); in ParseHeaderSearchPaths()
|