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 70 assert(CurTokenLexer == 0 && "Cannot #include a file inside a macro!");
111 if (CurPPLexer || CurTokenLexer)
135 if (CurPPLexer || CurTokenLexer)
162 CurTokenLexer.reset(new TokenLexer(Tok, ILEnd, Args, *this));
164 CurTokenLexer.reset(TokenLexerCache[--NumCachedTokenLexers]);
165 CurTokenLexer->Init(Tok, ILEnd, Args);
192 CurTokenLexer.reset(new TokenLexer(Toks, NumToks, DisableMacroExpansion,
195 CurTokenLexer.reset(TokenLexerCache[--NumCachedTokenLexers]);
196 CurTokenLexer->Init(Toks, NumToks, DisableMacroExpansion, OwnsTokens);
206 assert(!CurTokenLexer &
    [all...]
Preprocessor.cpp 556 else if (CurTokenLexer)
Pragma.cpp 113 if ((CurTokenLexer && CurTokenLexer->isParsingPreprocessorDirective())
    [all...]
PPDirectives.cpp 177 !CurTokenLexer)
199 assert(CurTokenLexer == 0 && CurPPLexer && "Lexing a macro, not a file?");
    [all...]
PPMacroExpansion.cpp 148 Val = CurTokenLexer->isNextTokenLParen();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 185 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
190 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
203 /// CurTokenLexer - This is the current macro we are expanding, if we are
204 /// expanding a macro. One of CurLexer and CurTokenLexer must be null.
205 llvm::OwningPtr<TokenLexer> CurTokenLexer;
218 /// CurLexer/CurTokenLexer.
584 case CLK_TokenLexer: CurTokenLexer->Lex(Result); break;
    [all...]

Completed in 19 milliseconds