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

1 23 4 5 6 7

  /external/clang/lib/Frontend/
HeaderIncludeGen.cpp 13 #include "clang/Lex/Preprocessor.h"
30 HeaderIncludesCallback(const Preprocessor *PP, bool ShowAllHeaders_,
49 void clang::AttachHeaderIncludeGen(Preprocessor &PP, bool ShowAllHeaders,
PrintPreprocessedOutput.cpp 10 // This code simply runs the preprocessor on the input file and prints out the
23 #include "clang/Lex/Preprocessor.h"
36 Preprocessor &PP, raw_ostream &OS) {
82 Preprocessor &PP;
100 PrintPPOutputPPCallbacks(Preprocessor &pp, raw_ostream &os,
249 /// FileChanged - Whenever the preprocessor enters or exits a #include file
339 /// Ident - Handle #ident directives when read by the preprocessor.
526 // is not handled as a #define next time through the preprocessor if in
568 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
595 static void PrintPreprocessedTokens(Preprocessor &PP, Token &Tok
    [all...]
DependencyFile.cpp 22 #include "clang/Lex/Preprocessor.h"
123 void DependencyCollector::attachToPreprocessor(Preprocessor &PP) {
135 const Preprocessor *PP;
149 DFGImpl(const Preprocessor *_PP, const DependencyOutputOptions &Opts)
194 clang::Preprocessor &PP, const clang::DependencyOutputOptions &Opts) {
TextDiagnosticPrinter.cpp 40 const Preprocessor *PP) {
  /external/clang/lib/Parse/
ParseAST.cpp 56 const Preprocessor &PP = P.getPreprocessor();
85 void clang::ParseAST(Preprocessor &PP, ASTConsumer *Consumer,
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 11 // preprocessor.
15 #include "clang/Lex/Preprocessor.h"
37 Preprocessor::getMacroDirectiveHistory(const IdentifierInfo *II) const {
45 void Preprocessor::appendMacroDirective(IdentifierInfo *II, MacroDirective *MD){
59 void Preprocessor::setLoadedMacroDirective(IdentifierInfo *II,
74 static IdentifierInfo *RegisterBuiltinMacro(Preprocessor &PP, const char *Name){
88 void Preprocessor::RegisterBuiltinMacros() {
139 Preprocessor &PP) {
172 /// isNextPPTokenLParen - Determine whether the next preprocessor token to be
175 bool Preprocessor::isNextPPTokenLParen()
    [all...]
TokenConcatenation.cpp 16 #include "clang/Lex/Preprocessor.h"
70 TokenConcatenation::TokenConcatenation(Preprocessor &pp) : PP(pp) {
121 static char GetFirstChar(Preprocessor &PP, const Token &Tok) {
  /external/markdown/markdown/extensions/
abbr.py 40 class AbbrPreprocessor(markdown.preprocessors.Preprocessor):
41 """ Abbreviation Preprocessor - parse text for abbr references. """
fenced_code.py 84 class FencedBlockPreprocessor(markdown.preprocessors.Preprocessor):
meta.py 58 class MetaPreprocessor(markdown.preprocessors.Preprocessor):
imagelinks.py 37 class ImageLinkPreprocessor(markdown.preprocessors.Preprocessor):
  /external/clang/lib/Analysis/
ReachableCode.cpp 16 #include "clang/Lex/Preprocessor.h"
127 Preprocessor &PP,
150 static bool isConfigurationValue(const ValueDecl *D, Preprocessor &PP);
160 Preprocessor &PP,
230 static bool isConfigurationValue(const ValueDecl *D, Preprocessor &PP) {
253 Preprocessor &PP) {
269 Preprocessor *PP,
334 Preprocessor &PP,
348 Preprocessor &PP;
356 DeadCodeScan(llvm::BitVector &reachable, Preprocessor &PP
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 61 class Preprocessor;
106 /// \brief The preprocessor we're writing.
107 Preprocessor *PP;
452 void WriteControlBlock(Preprocessor &PP, ASTContext &Context,
459 const Preprocessor &PP,
461 void WritePreprocessor(const Preprocessor &PP, bool IsModule);
479 void WriteIdentifierTable(Preprocessor &PP, IdentifierResolver &IdResolver,
783 const Preprocessor &PP;
800 PCHGenerator(const Preprocessor &PP, StringRef OutputFile,
  /external/clang/lib/Rewrite/Frontend/
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
  /external/clang/include/clang/Lex/
Lexer.h 26 class Preprocessor;
45 /// on the specified Preprocessor object to handle preprocessor directives, etc.
58 // Context-specific lexing flags set by the preprocessor.
94 friend class Preprocessor;
100 /// with the specified preprocessor managing the lexing process. This lexer
101 /// assumes that the associated file buffer and Preprocessor objects will
103 Lexer(FileID FID, const llvm::MemoryBuffer *InputBuffer, Preprocessor &PP);
123 unsigned TokLen, Preprocessor &PP);
138 /// return the tok::eof token. This implicitly involves the preprocessor
    [all...]
MacroInfo.h 24 class Preprocessor;
155 bool isIdenticalTo(const MacroInfo &Other, Preprocessor &PP,
310 friend class Preprocessor;
PreprocessorOptions.h 30 class Preprocessor;
43 /// used in preprocessor initialization to InitializePreprocessor().
50 /// \brief Initialize the preprocessor with the compiler and target specific
  /frameworks/compile/slang/
slang_pragma_recorder.cpp 23 #include "clang/Lex/Preprocessor.h"
55 void PragmaRecorder::HandlePragma(clang::Preprocessor &PP,
slang_rs_context.h 25 #include "clang/Lex/Preprocessor.h"
66 clang::Preprocessor &mPP;
106 RSContext(clang::Preprocessor &PP,
113 inline clang::Preprocessor &getPreprocessor() const { return mPP; }
  /external/clang/include/clang/AST/
CommentSema.h 28 class Preprocessor;
47 const Preprocessor *PP;
75 const Preprocessor *PP);
  /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/Frontend/
ASTUnit.h 58 class Preprocessor;
92 IntrusiveRefCntPtr<Preprocessor> PP;
490 const Preprocessor &getPreprocessor() const { return *PP; }
491 Preprocessor &getPreprocessor() { return *PP; }
497 void setPreprocessor(Preprocessor *pp);
665 /// of the local Preprocessor, if this is a parsed source file, or the loaded
    [all...]
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 17 #include "clang/Lex/Preprocessor.h"
357 void html::SyntaxHighlight(Rewriter &R, FileID FID, const Preprocessor &PP) {
365 // Inform the preprocessor that we want to retain comments as tokens, so we
416 // If this is a preprocessor directive, all tokens to end of line are too.
446 void html::HighlightMacros(Rewriter &R, FileID FID, const Preprocessor& PP) {
462 // 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/unittests/Lex/
PPCallbacksTest.cpp 10 #include "clang/Lex/Preprocessor.h"
174 Preprocessor PP(PPOpts, Diags, LangOpts, SourceMgr, HeaderInfo, ModLoader,
207 Preprocessor PP(new PreprocessorOptions(), Diags, OpenCLLangOpts, SourceMgr,
212 // parser actually sets correct pragma handlers for preprocessor
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 26 #include "clang/Lex/Preprocessor.h"
72 const Preprocessor &PP) {
81 const clang::Preprocessor &PP) {
156 const Preprocessor &PP;
184 AnalysisConsumer(const Preprocessor& pp,
691 ento::CreateAnalysisConsumer(const Preprocessor &pp, const std::string &outDir,

Completed in 798 milliseconds

1 23 4 5 6 7