Lines Matching refs:Opts
172 DFGImpl(const Preprocessor *_PP, const DependencyOutputOptions &Opts) in DFGImpl() argument
173 : PP(_PP), OutputFile(Opts.OutputFile), Targets(Opts.Targets), in DFGImpl()
174 IncludeSystemHeaders(Opts.IncludeSystemHeaders), in DFGImpl()
175 PhonyTarget(Opts.UsePhonyTargets), in DFGImpl()
176 AddMissingHeaderDeps(Opts.AddMissingHeaderDeps), in DFGImpl()
178 IncludeModuleFiles(Opts.IncludeModuleFiles), in DFGImpl()
179 OutputFormat(Opts.OutputFormat) { in DFGImpl()
180 for (auto ExtraDep : Opts.ExtraDeps) { in DFGImpl()
234 clang::Preprocessor &PP, const clang::DependencyOutputOptions &Opts) { in CreateAndAttachToPreprocessor() argument
236 if (Opts.Targets.empty()) { in CreateAndAttachToPreprocessor()
242 if (Opts.AddMissingHeaderDeps) in CreateAndAttachToPreprocessor()
245 DFGImpl *Callback = new DFGImpl(&PP, Opts); in CreateAndAttachToPreprocessor()