Searched defs:TokLexer (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Lex/
H A DPPLexerChange.cpp163 std::unique_ptr<TokenLexer> TokLexer; local
165 TokLexer = llvm::make_unique<TokenLexer>(Tok, ILEnd, Macro, Args, *this);
167 TokLexer = std::move(TokenLexerCache[--NumCachedTokenLexers]);
168 TokLexer->Init(Tok, ILEnd, Macro, Args);
173 CurTokenLexer = std::move(TokLexer);
213 std::unique_ptr<TokenLexer> TokLexer; local
215 TokLexer = llvm::make_unique<TokenLexer>(
218 TokLexer = std::move(TokenLexerCache[--NumCachedTokenLexers]);
219 TokLexer->Init(Toks, NumToks, DisableMacroExpansion, OwnsTokens);
225 CurTokenLexer = std::move(TokLexer);
[all...]

Completed in 80 milliseconds