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

  /external/clang/lib/Lex/
PPLexerChange.cpp 142 CurPTHLexer.reset(PL);
143 CurPPLexer = CurPTHLexer.get();
272 assert(CurPTHLexer && "Got EOF but no current lexer set!");
273 CurPTHLexer->getEOF(Result);
274 CurPTHLexer.reset();
335 assert(CurPTHLexer && "Got EOF but no current lexer set!");
336 CurPTHLexer->getEOF(Result);
337 CurPTHLexer.reset();
PPDirectives.cpp 212 if (CurPTHLexer) {
411 assert(CurPTHLexer);
412 assert(CurPTHLexer->LexingRawMode == false);
415 if (CurPTHLexer->SkipBlock()) {
419 bool InCond = CurPTHLexer->popConditionalLevel(CondInfo);
438 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
447 CurPTHLexer->ParsingPreprocessorDirective = true;
449 CurPTHLexer->ParsingPreprocessorDirective = false;
459 PPConditionalInfo &CondInfo = CurPTHLexer->peekConditionalLevel();
472 CurPTHLexer->ParsingPreprocessorDirective = true
    [all...]
PPMacroExpansion.cpp 155 else if (CurPTHLexer)
156 Val = CurPTHLexer->isNextPPTokenLParen();
    [all...]
Preprocessor.cpp 276 else if (CurPTHLexer)
Pragma.cpp 335 CurPTHLexer->DiscardToEndOfLine();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 203 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
206 /// CurPTHLexer - This is the current top of stack that we're lexing from if
208 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
209 OwningPtr<PTHLexer> CurPTHLexer;
213 /// CurPTHLexer.
598 case CLK_PTHLexer: CurPTHLexer->Lex(Result); break;
699 /// \brief Recompute the current lexer kind based on the CurLexer/CurPTHLexer/
    [all...]

Completed in 93 milliseconds