Home
last modified time | relevance | path

Searched refs:CurPTHLexer (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/Lex/
DPPLexerChange.cpp144 CurPTHLexer.reset(PL); in EnterSourceFileWithPTH()
145 CurPPLexer = CurPTHLexer.get(); in EnterSourceFileWithPTH()
382 assert(CurPTHLexer && "Got EOF but no current lexer set!"); in HandleEndOfFile()
383 CurPTHLexer->getEOF(Result); in HandleEndOfFile()
384 CurPTHLexer.reset(); in HandleEndOfFile()
459 assert(CurPTHLexer && "Got EOF but no current lexer set!"); in HandleEndOfFile()
460 CurPTHLexer->getEOF(Result); in HandleEndOfFile()
461 CurPTHLexer.reset(); in HandleEndOfFile()
DPPDirectives.cpp376 if (CurPTHLexer) { in SkipExcludedConditionalBlock()
582 assert(CurPTHLexer); in PTHSkipExcludedConditionalBlock()
583 assert(CurPTHLexer->LexingRawMode == false); in PTHSkipExcludedConditionalBlock()
586 if (CurPTHLexer->SkipBlock()) { in PTHSkipExcludedConditionalBlock()
590 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo); in PTHSkipExcludedConditionalBlock()
609 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel(); in PTHSkipExcludedConditionalBlock()
618 CurPTHLexer->ParsingPreprocessorDirective = true; in PTHSkipExcludedConditionalBlock()
620 CurPTHLexer->ParsingPreprocessorDirective = false; in PTHSkipExcludedConditionalBlock()
630 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel(); in PTHSkipExcludedConditionalBlock()
643 CurPTHLexer->ParsingPreprocessorDirective = true; in PTHSkipExcludedConditionalBlock()
[all …]
DPreprocessor.cpp364 else if (CurPTHLexer) in recomputeCurLexerKind()
731 ReturnedToken = CurPTHLexer->Lex(Result); in Lex()
DPPMacroExpansion.cpp382 else if (CurPTHLexer) in isNextPPTokenLParen()
383 Val = CurPTHLexer->isNextPPTokenLParen(); in isNextPPTokenLParen()
DPragma.cpp372 CurPTHLexer->DiscardToEndOfLine(); in HandlePragmaMark()
/external/clang/include/clang/Lex/
DPreprocessor.h290 std::unique_ptr<PTHLexer> CurPTHLexer; variable
1693 CurLexerKind, CurSubmodule, std::move(CurLexer), std::move(CurPTHLexer), in PushIncludeMacroStack()
1700 CurPTHLexer = std::move(IncludeMacroStack.back().ThePTHLexer); in PopIncludeMacroStack()
1850 return !CurPPLexer && !CurTokenLexer && !CurPTHLexer && in InCachingLexMode()