Home
last modified time | relevance | path

Searched refs:CCInvocation (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp1154 CCInvocation = std::make_shared<CompilerInvocation>(*Invocation); in Parse()
1158 Preamble->AddImplicitPreamble(*CCInvocation, VFS, OverrideMainBuffer.get()); in Parse()
1163 auto Clang = std::make_unique<CompilerInstance>(CCInvocation, in Parse()
2211 auto CCInvocation = std::make_shared<CompilerInvocation>(*Invocation); in CodeComplete() local
2213 FrontendOptions &FrontendOpts = CCInvocation->getFrontendOpts(); in CodeComplete()
2215 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete()
2232 LangOpts = CCInvocation->getLangOpts(); in CodeComplete()
2236 CCInvocation->getDiagnosticOpts().IgnoreWarnings = true; in CodeComplete()
2238 auto Clang = std::make_unique<CompilerInstance>(std::move(CCInvocation), in CodeComplete()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DASTUnit.h149 std::shared_ptr<CompilerInvocation> CCInvocation; variable