Lines Matching defs:HSOpts
520 HeaderSearchOptions &HSOpts;
531 HeaderSearchOptions &HSOpts, PreprocessorOptions &PPOpts,
535 : PP(PP), Context(Context), HSOpts(HSOpts), PPOpts(PPOpts),
561 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
566 this->HSOpts.ForceCheckCXX20ModulesInputFiles;
567 llvm::SaveAndRestore X(this->HSOpts.UserEntries);
568 llvm::SaveAndRestore Y(this->HSOpts.SystemHeaderPrefixes);
569 llvm::SaveAndRestore Z(this->HSOpts.VFSOverlayFiles);
571 this->HSOpts = HSOpts;
572 this->HSOpts.ForceCheckCXX20ModulesInputFiles =
578 bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts,
583 this->HSOpts.UserEntries = HSOpts.UserEntries;
584 this->HSOpts.SystemHeaderPrefixes = HSOpts.SystemHeaderPrefixes;
585 this->HSOpts.VFSOverlayFiles = HSOpts.VFSOverlayFiles;
591 HSOpts.VFSOverlayFiles, PP.getDiagnostics(),
804 std::shared_ptr<HeaderSearchOptions> HSOpts,
829 AST->HSOpts = HSOpts ? HSOpts : std::make_shared<HeaderSearchOptions>();
830 AST->HSOpts->ModuleFormat = std::string(PCHContainerRdr.getFormats().front());
831 AST->HeaderInfo.reset(new HeaderSearch(AST->HSOpts,
866 *AST->PP, AST->Ctx.get(), *AST->HSOpts, *AST->PPOpts, *AST->LangOpts,