Searched refs:getPreprocessor (Results 1 - 22 of 22) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DFrontendActions.cpp18 return CreateAnalysisConsumer(CI.getPreprocessor(),
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
H A DParseAST.cpp56 const Preprocessor &PP = P.getPreprocessor();
64 const SourceManager &SM = P.getPreprocessor().getSourceManager();
112 OwningPtr<Parser> ParseOP(new Parser(S.getPreprocessor(), S,
122 S.getPreprocessor().EnterMainSourceFile();
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DFrontendAction.cpp199 CI.setPreprocessor(&AST->getPreprocessor());
272 &CI.getPreprocessor());
329 Preprocessor &PP = CI.getPreprocessor();
386 CI.getPreprocessor().getHeaderSearchInfo().getModuleCachePath());
421 CI.getPreprocessor().EndSourceFile();
425 CI.getPreprocessor().PrintStats();
426 CI.getPreprocessor().getIdentifierTable().PrintStats();
427 CI.getPreprocessor().getHeaderSearchInfo().PrintStats();
H A DFrontendActions.cpp86 return new PCHGenerator(CI.getPreprocessor(), OutputFile, 0, Sysroot, OS);
121 return new PCHGenerator(CI.getPreprocessor(), OutputFile, Module,
224 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
265 CI.getPreprocessor().getHeaderSearchInfo().getModuleMap(),
285 HeaderSearch &HS = CI.getPreprocessor().getHeaderSearchInfo();
440 Preprocessor &PP = getCompilerInstance().getPreprocessor();
458 Preprocessor &PP = getCompilerInstance().getPreprocessor();
481 CacheTokens(CI.getPreprocessor(), OS);
485 Preprocessor &PP = getCompilerInstance().getPreprocessor();
544 DoPrintPreprocessedInput(CI.getPreprocessor(), O
[all...]
H A DChainedIncludesSource.cpp33 Preprocessor &PP = CI.getPreprocessor();
108 &Clang->getPreprocessor());
114 consumer.reset(new PCHGenerator(Clang->getPreprocessor(), "-", 0,
122 Preprocessor &PP = Clang->getPreprocessor();
H A DCompilerInstance.cpp283 Preprocessor &PP = getPreprocessor();
301 getPreprocessor(), getASTContext(),
379 createCodeCompletionConsumer(getPreprocessor(),
385 } else if (EnableCodeCompletion(getPreprocessor(), Loc.FileName,
393 getPreprocessor().getDiagnostics().Report(diag::err_fe_stdout_binary);
418 TheSema.reset(new Sema(getPreprocessor(), getASTContext(), getASTConsumer(),
811 = ImportingInstance.getPreprocessor().getHeaderSearchInfo().getModuleMap();
1157 ModuleManager = new ASTReader(getPreprocessor(), *Context,
1380 checkConfigMacro(getPreprocessor(), TopModule->ConfigMacros[I],
H A DASTUnit.cpp975 CI.getPreprocessor().addPPCallbacks(
1073 CI.getPreprocessor().addPPCallbacks(new MacroDefinitionTrackerPPCallbacks(
1075 return new PrecompilePreambleConsumer(Unit, this, CI.getPreprocessor(),
1725 PP = &CI.getPreprocessor();
1892 Clang->getPreprocessor().addPPCallbacks(
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
H A DFrontendActions.cpp36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
174 RewriteMacrosInInput(CI.getPreprocessor(), OS);
182 DoRewriteTest(CI.getPreprocessor(), OS);
190 RewriteIncludesInInput(CI.getPreprocessor(), OS,
/freebsd-10-stable/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DARCMT.cpp280 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
289 Unit->getPreprocessor());
304 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
310 TransformActions testAct(*Diags, capturedDiags, Ctx, Unit->getPreprocessor());
487 CI.getPreprocessor().addPPCallbacks(
593 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
605 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
608 TransformActions TA(*Diags, capturedDiags, Ctx, Unit->getPreprocessor());
H A DObjCMT.cpp162 CompInst->getPreprocessor().addPPCallbacks(PPRec);
170 CompInst->getPreprocessor(),
1764 CI.getPreprocessor().addPPCallbacks(PPRec);
1772 CI.getPreprocessor(),
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Expression/
H A DClangExpressionParser.cpp350 m_compiler->getPreprocessor().getIdentifierTable(),
390 diag_buf->BeginSourceFile(m_compiler->getLangOpts(), &m_compiler->getPreprocessor());
395 ParseAST(m_compiler->getPreprocessor(), ast_transformer, m_compiler->getASTContext());
397 ParseAST(m_compiler->getPreprocessor(), m_code_generator.get(), m_compiler->getASTContext());
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Frontend/
H A DASTUnit.h451 const Preprocessor &getPreprocessor() const { return *PP; } function in class:clang::ASTUnit
452 Preprocessor &getPreprocessor() { return *PP; } function in class:clang::ASTUnit
H A DCompilerInstance.h360 Preprocessor &getPreprocessor() const { function in class:clang::CompilerInstance
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTReader.h1290 Preprocessor &getPreprocessor() const { return PP; } function in class:clang::ASTReader
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp978 if (getPreprocessor().getSpelling(loc, buffer) == name) {
H A DAnalysisBasedWarnings.cpp949 Preprocessor &PP = S.getPreprocessor();
H A DSemaChecking.cpp2923 S.getPreprocessor().getLocForEndOfToken(E->getLocEnd());
5299 S.getPreprocessor().getLocForEndOfToken(E->getLocEnd()), "()");
H A DSemaInit.cpp7067 S.getPreprocessor().getLocForEndOfToken(PostInit->getLocEnd()), ")");
H A DSemaExpr.cpp7618 FirstClose = S.getPreprocessor().getLocForEndOfToken(FirstClose);
7628 SecondClose = S.getPreprocessor().getLocForEndOfToken(SecondClose);
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h226 Preprocessor &getPreprocessor() const { return PP; } function in class:clang::Parser
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp1313 Reader.getPreprocessor().getHeaderSearchInfo().getModuleMap();
2886 = getPreprocessor().getHeaderSearchInfo().getModuleCachePath();
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h876 Preprocessor &getPreprocessor() const { return PP; } function in class:clang::Sema

Completed in 345 milliseconds