HomeSort by relevance Sort by last modified time
    Searched refs:Preprocessor (Results 51 - 75 of 120) sorted by null

1 23 4 5

  /external/clang/lib/Rewrite/
RewriteMacros.cpp 17 #include "clang/Lex/Preprocessor.h"
62 static void LexRawTokensFromMainFile(Preprocessor &PP,
90 void clang::RewriteMacrosInInput(Preprocessor &PP, raw_ostream *OS) {
123 // If the raw file hits a preprocessor directive, they will be extra tokens
HTMLRewrite.cpp 15 #include "clang/Lex/Preprocessor.h"
19 #include "clang/Lex/Preprocessor.h"
358 void html::SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP) {
366 // Inform the preprocessor that we want to retain comments as tokens, so we
417 // If this is a preprocessor directive, all tokens to end of line are too.
447 void html::HighlightMacros(Rewriter &R, FileID FID, const Preprocessor& PP) {
463 // preprocessor directives.
488 // FIXME: This is a huge hack; we reuse the input preprocessor because we want
490 // construct a copy of the preprocessor.
491 Preprocessor &TmpPP = const_cast<Preprocessor&>(PP)
    [all...]
  /external/clang/include/clang/Frontend/
AnalyzerOptions.h 24 class Preprocessor;
ASTUnit.h 54 class Preprocessor;
69 IntrusiveRefCntPtr<Preprocessor> PP;
439 const Preprocessor &getPreprocessor() const { return *PP; }
440 Preprocessor &getPreprocessor() { return *PP; }
446 void setPreprocessor(Preprocessor *pp);
PreprocessorOptions.h 27 class Preprocessor;
40 /// used in preprocessor initialization to InitializePreprocessor().
47 unsigned UsePredefines : 1; /// Initialize the preprocessor with the compiler
  /external/clang/lib/Parse/
ParseAST.cpp 38 void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
  /external/markdown/markdown/extensions/
imagelinks.py 37 class ImageLinkPreprocessor(markdown.preprocessors.Preprocessor):
  /frameworks/compile/slang/
slang_pragma_recorder.cpp 23 #include "clang/Lex/Preprocessor.h"
56 void PragmaRecorder::HandlePragma(clang::Preprocessor &PP,
slang_rs_context.h 25 #include "clang/Lex/Preprocessor.h"
67 clang::Preprocessor &mPP;
100 RSContext(clang::Preprocessor &PP,
107 inline clang::Preprocessor &getPreprocessor() const { return mPP; }
  /external/clang/lib/Frontend/
DependencyFile.cpp 22 #include "clang/Lex/Preprocessor.h"
33 const Preprocessor *PP;
47 DependencyFileCallback(const Preprocessor *_PP,
73 void clang::AttachDependencyFileGen(Preprocessor &PP,
PrintPreprocessedOutput.cpp 10 // This code simply runs the preprocessor on the input file and prints out the
22 #include "clang/Lex/Preprocessor.h"
35 Preprocessor &PP, raw_ostream &OS) {
81 Preprocessor &PP;
98 PrintPPOutputPPCallbacks(Preprocessor &pp, raw_ostream &os,
233 /// FileChanged - Whenever the preprocessor enters or exits a #include file
290 /// Ident - Handle #ident directives when read by the preprocessor.
428 // is not handled as a #define next time through the preprocessor if in
470 virtual void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
492 static void PrintPreprocessedTokens(Preprocessor &PP, Token &Tok
    [all...]
TextDiagnosticPrinter.cpp 40 const Preprocessor *PP) {
VerifyDiagnosticConsumer.cpp 17 #include "clang/Lex/Preprocessor.h"
43 const Preprocessor *PP) {
44 // FIXME: Const hack, we screw up the preprocessor but in practice its ok
47 CurrentPreprocessor = const_cast<Preprocessor*>(PP);
244 ExpectedData &ED, Preprocessor &PP,
343 static void FindExpectedDiags(Preprocessor &PP, ExpectedData &ED, FileID FID) {
505 // If we have a preprocessor, scan the source for expected diagnostic
FrontendActions.cpp 14 #include "clang/Lex/Preprocessor.h"
358 // Preprocessor Actions
362 Preprocessor &PP = getCompilerInstance().getPreprocessor();
380 Preprocessor &PP = getCompilerInstance().getPreprocessor();
407 Preprocessor &PP = getCompilerInstance().getPreprocessor();
  /external/markdown/markdown/
preprocessors.py 21 class Preprocessor (Processor):
25 Each preprocessor implements a "run" method that takes a pointer to a
29 Preprocessors must extend markdown.Preprocessor.
34 Each subclass of Preprocessor should override the `run` method, which
76 class HtmlBlockPreprocessor(Preprocessor):
191 class ReferencePreprocessor(Preprocessor):
  /external/clang/include/clang/Serialization/
ASTWriter.h 57 class Preprocessor;
100 /// \brief The preprocessor we're writing.
101 Preprocessor *PP;
403 const Preprocessor &PP,
405 void WritePreprocessor(const Preprocessor &PP, bool IsModule);
419 void WriteIdentifierTable(Preprocessor &PP, IdentifierResolver &IdResolver,
710 const Preprocessor &PP;
726 PCHGenerator(const Preprocessor &PP, StringRef OutputFile,
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 18 #include "clang/Lex/Preprocessor.h"
68 Preprocessor PP(Diags, LangOpts,
135 Preprocessor PP(Diags, LangOpts,
232 Preprocessor PP(Diags, LangOpts,
  /external/clang/unittests/Lex/
PreprocessingRecordTest.cpp 18 #include "clang/Lex/Preprocessor.h"
84 Preprocessor PP(Diags, LangOpts,
  /external/clang/lib/Lex/
TokenConcatenation.cpp 15 #include "clang/Lex/Preprocessor.h"
69 TokenConcatenation::TokenConcatenation(Preprocessor &pp) : PP(pp) {
120 static char GetFirstChar(Preprocessor &PP, const Token &Tok) {
MacroInfo.cpp 15 #include "clang/Lex/Preprocessor.h"
92 bool MacroInfo::isIdenticalTo(const MacroInfo &Other, Preprocessor &PP) const {
  /external/clang/include/clang/Lex/
Preprocessor.h 1 //===--- Preprocessor.h - C Language Family Preprocessor --------*- C++ -*-===//
10 // This file defines the Preprocessor interface.
58 /// Preprocessor - This object engages in a tight little dance with the lexer to
60 /// single source file, and don't know anything about preprocessor-level issues
63 class Preprocessor : public RefCountedBase<Preprocessor> {
82 /// objects internal to the Preprocessor.
110 // State that is set before the preprocessor begins.
115 // State that changes while the preprocessor runs
    [all...]
  /external/clang/lib/ARCMigrate/
TransformActions.cpp 12 #include "clang/Lex/Preprocessor.h"
31 Preprocessor &PP;
67 CharRange(CharSourceRange range, SourceManager &srcMgr, Preprocessor &PP) {
98 SourceManager &SrcMgr, Preprocessor &PP) {
122 ASTContext &ctx, Preprocessor &PP)
178 SourceManager &SM,Preprocessor &PP);
592 Preprocessor &PP) {
602 ASTContext &ctx, Preprocessor &PP)
Internals.h 53 ASTContext &ctx, Preprocessor &PP);
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 23 #include "clang/Lex/Preprocessor.h"
41 const Preprocessor &PP;
43 HTMLDiagnostics(const std::string& prefix, const Preprocessor &pp);
72 const Preprocessor &pp)
81 const Preprocessor &PP) {
184 // If we have a preprocessor, relex the file and syntax highlight.
185 // We might not have a preprocessor if we come from a deserialized AST file,
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 37 #include "clang/Lex/Preprocessor.h"
67 const Preprocessor &PP) {
94 const Preprocessor &PP;
122 AnalysisConsumer(const Preprocessor& pp,
561 ASTConsumer* ento::CreateAnalysisConsumer(const Preprocessor& pp,

Completed in 1378 milliseconds

1 23 4 5