Home
last modified time | relevance | path

Searched refs:VFSOverlayFiles (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DHeaderSearchOptions.h185 std::vector<std::string> VFSOverlayFiles; variable
254 VFSOverlayFiles.push_back(std::string(Name)); in AddVFSOverlayFile()
/openbsd-src/gnu/llvm/clang/include/clang/Frontend/
H A DCompilerInvocation.h298 createVFSFromOverlayFiles(ArrayRef<std::string> VFSOverlayFiles,
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DASTUnit.cpp557 llvm::SaveAndRestore Z(this->HSOpts.VFSOverlayFiles); in ReadHeaderSearchOptions()
571 this->HSOpts.VFSOverlayFiles = HSOpts.VFSOverlayFiles; in ReadHeaderSearchPaths()
577 HSOpts.VFSOverlayFiles, PP.getDiagnostics(), in ReadHeaderSearchPaths()
H A DCompilerInstance.cpp266 if (CI.getHeaderSearchOpts().VFSOverlayFiles.empty()) in collectVFSEntries()
271 for (const std::string &VFSFile : CI.getHeaderSearchOpts().VFSOverlayFiles) { in collectVFSEntries()
H A DCompilerInvocation.cpp3093 for (const std::string &F : Opts.VFSOverlayFiles) in GenerateHeaderSearchArgs()
4755 return createVFSFromOverlayFiles(CI.getHeaderSearchOpts().VFSOverlayFiles, in createVFSFromCompilerInvocation()
4760 ArrayRef<std::string> VFSOverlayFiles, DiagnosticsEngine &Diags, in createVFSFromOverlayFiles() argument
4762 if (VFSOverlayFiles.empty()) in createVFSFromOverlayFiles()
4767 for (const auto &File : VFSOverlayFiles) { in createVFSFromOverlayFiles()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp1203 Record.push_back(HSOpts.VFSOverlayFiles.size()); in writeUnhashedControlBlock()
1204 for (StringRef VFSOverlayFile : HSOpts.VFSOverlayFiles) in writeUnhashedControlBlock()
H A DASTReader.cpp5960 HSOpts.VFSOverlayFiles.emplace_back(std::move(VFSOverlayFile)); in ParseHeaderSearchPaths()