Home | History | Annotate | Download | only in Frontend

Lines Matching defs:Invocation

80   CompilerInvocation *invocation = new CompilerInvocation;
81 invocation->getPreprocessorOpts().addRemappedFile(
84 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
86 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
87 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
89 compiler.setInvocation(invocation);
100 CompilerInvocation *invocation = new CompilerInvocation;
101 invocation->getPreprocessorOpts().addRemappedFile(
104 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
106 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
107 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
109 compiler.setInvocation(invocation);
120 CompilerInvocation *invocation = new CompilerInvocation;
121 invocation->getLangOpts()->CPlusPlus = true;
122 invocation->getLangOpts()->DelayedTemplateParsing = true;
123 invocation->getPreprocessorOpts().addRemappedFile(
131 invocation->getFrontendOpts().Inputs.push_back(FrontendInputFile("test.cc",
133 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
134 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
136 compiler.setInvocation(invocation);
173 CompilerInvocation *Invocation = new CompilerInvocation;
174 Invocation->getPreprocessorOpts().addRemappedFile(
177 Invocation->getFrontendOpts().Inputs.push_back(
179 Invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
180 Invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
182 Compiler.setInvocation(Invocation);