Lines Matching defs:Compiler
54 CompilerInstance Compiler;
55 Compiler.setInvocation(std::move(Invocation));
56 Compiler.createDiagnostics(*llvm::vfs::getRealFileSystem());
57 EXPECT_TRUE(Compiler.hasDiagnostics());
60 bool Success = Compiler.ExecuteAction(*Act);
72 CompilerInstance Compiler;
73 Compiler.setInvocation(std::move(Invocation));
74 Compiler.createDiagnostics(*llvm::vfs::getRealFileSystem());
75 EXPECT_TRUE(Compiler.hasDiagnostics());
78 bool Success = Compiler.ExecuteAction(Action);
100 CompilerInstance Compiler;
103 Compiler.setOutputStream(std::make_unique<raw_svector_ostream>(IRBuffer));
104 Compiler.setInvocation(std::move(Invocation));
105 Compiler.createDiagnostics(*VFS);
106 Compiler.createFileManager(std::move(VFS));
109 bool Success = Compiler.ExecuteAction(Action);