HomeSort by relevance Sort by last modified time
    Searched refs:CurTokenLexer (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/Lex/
PPLexerChange.cpp 73 assert(CurTokenLexer == 0 && "Cannot #include a file inside a macro!");
114 if (CurPPLexer || CurTokenLexer)
138 if (CurPPLexer || CurTokenLexer)
165 CurTokenLexer.reset(new TokenLexer(Tok, ILEnd, Args, *this));
167 CurTokenLexer.reset(TokenLexerCache[--NumCachedTokenLexers]);
168 CurTokenLexer->Init(Tok, ILEnd, Args);
195 CurTokenLexer.reset(new TokenLexer(Toks, NumToks, DisableMacroExpansion,
198 CurTokenLexer.reset(TokenLexerCache[--NumCachedTokenLexers]);
199 CurTokenLexer->Init(Toks, NumToks, DisableMacroExpansion, OwnsTokens);
234 assert(!CurTokenLexer &
    [all...]
Pragma.cpp 113 if ((CurTokenLexer && CurTokenLexer->isParsingPreprocessorDirective())
    [all...]
Preprocessor.cpp 278 else if (CurTokenLexer)
PPDirectives.cpp 185 !CurTokenLexer)
207 assert(CurTokenLexer == 0 && CurPPLexer && "Lexing a macro, not a file?");
    [all...]
PPMacroExpansion.cpp 158 Val = CurTokenLexer->isNextTokenLParen();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 203 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
208 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
221 /// CurTokenLexer - This is the current macro we are expanding, if we are
222 /// expanding a macro. One of CurLexer and CurTokenLexer must be null.
223 OwningPtr<TokenLexer> CurTokenLexer;
236 /// CurLexer/CurTokenLexer.
599 case CLK_TokenLexer: CurTokenLexer->Lex(Result); break;
700 /// CurTokenLexer pointers.
    [all...]

Completed in 64 milliseconds