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

12 3 4 5 6 7

  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 25 #include "clang/Lex/Preprocessor.h"
46 void HandlePragma(clang::Preprocessor &PP,
58 void HandlePragma(clang::Preprocessor &PP,
102 // Pre-mature end (syntax error will be triggered by preprocessor later)
133 void HandlePragma(clang::Preprocessor &PP,
142 void handleInt(clang::Preprocessor &PP,
163 void HandlePragma(clang::Preprocessor &PP,
178 void HandlePragma(clang::Preprocessor &PP,
212 void RSPragmaHandler::handleItemListPragma(clang::Preprocessor &PP,
240 void RSPragmaHandler::handleNonParamPragma(clang::Preprocessor &PP
    [all...]
slang.h 52 class Preprocessor;
110 // Preprocessor (source code preprocessor)
111 std::unique_ptr<clang::Preprocessor> mPP;
151 clang::Preprocessor &getPreprocessor() { return *mPP; }
  /external/chromium_org/third_party/markdown/extensions/
abbr.py 61 from ..preprocessors import Preprocessor
77 class AbbrPreprocessor(Preprocessor):
78 """ Abbreviation Preprocessor - parse text for abbr references. """
meta.py 77 from ..preprocessors import Preprocessor
93 class MetaPreprocessor(Preprocessor):
fenced_code.py 111 from ..preprocessors import Preprocessor
134 class FencedBlockPreprocessor(Preprocessor):
  /external/clang/include/clang/Lex/
PTHManager.h 65 /// PP - The Preprocessor object that will use this PTHManager to create
67 Preprocessor* PP;
123 void setPreprocessor(Preprocessor *pp) { PP = pp; }
LiteralSupport.h 29 class Preprocessor;
43 Preprocessor &PP; // needed for diagnostics
59 Preprocessor &PP);
163 SourceLocation Loc, Preprocessor &PP,
200 Preprocessor &PP, bool Complain = true);
PTHLexer.h 44 /// to process when doing quick skipping of preprocessor blocks.
64 PTHLexer(Preprocessor& pp, FileID FID, const unsigned char *D,
75 /// DiscardToEndOfLine - Read the rest of the current preprocessor line as an
99 /// SkipBlock - Used by Preprocessor to skip the current conditional block.
  /external/clang/lib/Lex/
Pragma.cpp 11 // pragma related methods of the Preprocessor class.
22 #include "clang/Lex/Preprocessor.h"
42 void EmptyPragmaHandler::HandlePragma(Preprocessor &PP,
79 void PragmaNamespace::HandlePragma(Preprocessor &PP,
101 // Preprocessor Pragma Directive Handling.
106 void Preprocessor::HandlePragmaDirective(SourceLocation IntroducerLoc,
127 /// \brief Helper class for \see Preprocessor::Handle_Pragma.
129 Preprocessor &PP;
136 LexingFor_PragmaRAII(Preprocessor &PP, bool InMacroArgPreExpansion,
166 void Preprocessor::Handle_Pragma(Token &Tok)
    [all...]
PPLexerChange.cpp 1 //===--- PPLexerChange.cpp - Handle changing lexers in the preprocessor ---===//
10 // This file implements pieces of the Preprocessor interface that manage the
15 #include "clang/Lex/Preprocessor.h"
35 bool Preprocessor::isInPrimaryFile() const {
51 PreprocessorLexer *Preprocessor::getCurrentFileLexer() const {
71 bool Preprocessor::EnterSourceFile(FileID FID, const DirectoryLookup *CurDir,
110 void Preprocessor::EnterSourceFileWithLexer(Lexer *TheLexer,
136 void Preprocessor::EnterSourceFileWithPTH(PTHLexer *PL,
161 void Preprocessor::EnterMacro(Token &Tok, SourceLocation ILEnd,
190 void Preprocessor::EnterTokenStream(const Token *Toks, unsigned NumToks
    [all...]
Android.mk 30 Preprocessor.cpp \
MacroArgs.cpp 17 #include "clang/Lex/Preprocessor.h"
27 bool VarargsElided, Preprocessor &PP) {
73 void MacroArgs::destroy(Preprocessor &PP) {
81 // Add this to the preprocessor's free list.
86 /// deallocate - This should only be called by the Preprocessor when managing
132 Preprocessor &PP) const {
149 Preprocessor &PP) {
192 /// preprocessor operator. If Charify is true, then it should be turned into
196 Preprocessor &PP, bool Charify,
298 Preprocessor &PP
    [all...]
PPDirectives.cpp 1 //===--- PPDirectives.cpp - Directive Handling for Preprocessor -----------===//
11 /// \brief Implements # directive processing for the Preprocessor.
15 #include "clang/Lex/Preprocessor.h"
33 // Utility Methods for Preprocessor Directive Handling.
36 MacroInfo *Preprocessor::AllocateMacroInfo() {
56 MacroInfo *Preprocessor::AllocateMacroInfo(SourceLocation L) {
62 MacroInfo *Preprocessor::AllocateDeserializedMacroInfo(SourceLocation L,
79 Preprocessor::AllocateDefMacroDirective(MacroInfo *MI, SourceLocation Loc,
87 Preprocessor::AllocateUndefMacroDirective(SourceLocation UndefLoc) {
94 Preprocessor::AllocateVisibilityMacroDirective(SourceLocation Loc
    [all...]
  /external/chromium_org/third_party/markdown/
preprocessors.py 58 class Preprocessor(util.Processor):
62 Each preprocessor implements a "run" method that takes a pointer to a
66 Preprocessors must extend markdown.Preprocessor.
71 Each subclass of Preprocessor should override the `run` method, which
79 class NormalizeWhitespace(Preprocessor):
91 class HtmlBlockPreprocessor(Preprocessor):
304 class ReferencePreprocessor(Preprocessor):
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 14 #include "clang/Lex/Preprocessor.h"
216 const Preprocessor *CurrentPreprocessor;
251 const Preprocessor *PP) override;
269 bool HandleComment(Preprocessor &PP, SourceRange Comment) override;
ChainedDiagnosticConsumer.h 36 const Preprocessor *PP) override {
LogDiagnosticPrinter.h 68 void BeginSourceFile(const LangOptions &LO, const Preprocessor *PP) override {
TextDiagnosticBuffer.h 22 class Preprocessor;
CompilerInstance.h 45 class Preprocessor;
55 /// for example the preprocessor, the target information, and the AST
87 /// The preprocessor.
88 IntrusiveRefCntPtr<Preprocessor> PP;
391 /// @name Preprocessor
396 /// Return the current preprocessor.
397 Preprocessor &getPreprocessor() const {
398 assert(PP && "Compiler instance has no preprocessor!");
407 /// Replace the current preprocessor.
408 void setPreprocessor(Preprocessor *Value)
    [all...]
  /external/clang/include/clang/Sema/
IdentifierResolver.h 29 class Preprocessor;
183 explicit IdentifierResolver(Preprocessor &PP);
188 Preprocessor &PP;
  /external/clang/lib/Serialization/
GeneratePCH.cpp 19 #include "clang/Lex/Preprocessor.h"
27 PCHGenerator::PCHGenerator(const Preprocessor &PP,
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 11 #include "clang/Lex/Preprocessor.h"
37 virtual bool HandleComment(Preprocessor &PP, SourceRange Loc) {
38 assert(&PP == this->PP && "Preprocessor changed!");
64 Preprocessor *PP;
93 Preprocessor *PP;
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP)
  /external/clang/lib/Parse/
ParsePragma.cpp 15 #include "clang/Lex/Preprocessor.h"
27 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
33 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
39 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
45 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
51 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
57 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
63 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
69 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer,
75 void HandlePragma(Preprocessor &PP, PragmaIntroducerKind Introducer
    [all...]
  /external/clang/lib/Frontend/
DependencyGraph.cpp 20 #include "clang/Lex/Preprocessor.h"
30 const Preprocessor *PP;
45 DependencyGraphCallback(const Preprocessor *_PP, StringRef OutputFile,
62 void clang::AttachDependencyGraphGen(Preprocessor &PP, StringRef OutputFile,
  /external/clang/include/clang/AST/
RawCommentList.h 22 class Preprocessor;
123 const Preprocessor *PP, const Decl *D) const;

Completed in 273 milliseconds

12 3 4 5 6 7