Lines Matching refs:Invocation
176 auto Invocation = std::make_shared<CompilerInvocation>(); in TEST() local
177 Invocation->getPreprocessorOpts().addRemappedFile( in TEST()
180 Invocation->getFrontendOpts().Inputs.push_back( in TEST()
182 Invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly; in TEST()
183 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu"; in TEST()
185 Compiler.setInvocation(std::move(Invocation)); in TEST()
235 auto Invocation = std::make_shared<CompilerInvocation>(); in TEST() local
236 Invocation->getLangOpts()->CPlusPlus = true; in TEST()
237 Invocation->getPreprocessorOpts().addRemappedFile( in TEST()
241 Invocation->getFrontendOpts().Inputs.push_back( in TEST()
243 Invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly; in TEST()
244 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu"; in TEST()
246 Compiler.setInvocation(std::move(Invocation)); in TEST()
268 auto Invocation = std::make_shared<CompilerInvocation>(); in TEST() local
269 Invocation->getLangOpts()->CacheGeneratedPCH = ShouldCache; in TEST()
270 Invocation->getPreprocessorOpts().addRemappedFile( in TEST()
273 Invocation->getFrontendOpts().Inputs.push_back( in TEST()
275 Invocation->getFrontendOpts().OutputFile = in TEST()
277 Invocation->getFrontendOpts().ProgramAction = frontend::GeneratePCH; in TEST()
278 Invocation->getTargetOpts().Triple = "x86_64-apple-darwin19.0.0"; in TEST()
280 Compiler.setInvocation(std::move(Invocation)); in TEST()