Lines Matching defs:Compiler
449 CompilerInstance Compiler(std::move(PCHContainerOps));
450 Compiler.setInvocation(std::move(Invocation));
451 Compiler.setFileManager(Files);
453 // The FrontendAction can have lifetime requirements for Compiler or its
454 // members, and we need to ensure it's deleted earlier than Compiler. So we
455 // pass it to an std::unique_ptr declared after the Compiler variable.
459 Compiler.createDiagnostics(DiagConsumer, /*ShouldOwnClient=*/false);
460 if (!Compiler.hasDiagnostics())
463 Compiler.createSourceManager(*Files);
465 const bool Success = Compiler.ExecuteAction(*ScopedToolAction);