Searched refs:CurLexerKind (Results 1 – 4 of 4) sorted by relevance
/external/clang/lib/Lex/ |
D | PPLexerChange.cpp | 120 if (CurLexerKind != CLK_LexAfterModuleImport) in EnterSourceFileWithLexer() 121 CurLexerKind = CLK_Lexer; in EnterSourceFileWithLexer() 144 if (CurLexerKind != CLK_LexAfterModuleImport) in EnterSourceFileWithPTH() 145 CurLexerKind = CLK_PTHLexer; in EnterSourceFileWithPTH() 170 if (CurLexerKind != CLK_LexAfterModuleImport) in EnterMacro() 171 CurLexerKind = CLK_TokenLexer; in EnterMacro() 201 if (CurLexerKind != CLK_LexAfterModuleImport) in EnterTokenStream() 202 CurLexerKind = CLK_TokenLexer; in EnterTokenStream()
|
D | Preprocessor.cpp | 65 CurDirLookup(0), CurLexerKind(CLK_Lexer), Callbacks(0), MacroArgCache(0), in Preprocessor() 275 CurLexerKind = CLK_Lexer; in recomputeCurLexerKind() 277 CurLexerKind = CLK_PTHLexer; in recomputeCurLexerKind() 279 CurLexerKind = CLK_TokenLexer; in recomputeCurLexerKind() 281 CurLexerKind = CLK_CachingLexer; in recomputeCurLexerKind() 577 getLangOpts().Modules && CurLexerKind != CLK_CachingLexer) { in HandleIdentifier() 581 CurLexerKind = CLK_LexAfterModuleImport; in HandleIdentifier() 606 CurLexerKind = CLK_LexAfterModuleImport; in LexAfterModuleImport() 614 CurLexerKind = CLK_LexAfterModuleImport; in LexAfterModuleImport()
|
D | PPCaching.cpp | 82 CurLexerKind = CLK_CachingLexer; in EnterCachingLexMode()
|
/external/clang/include/clang/Lex/ |
D | Preprocessor.h | 226 enum CurLexerKind { enum 232 } CurLexerKind; variable 238 enum CurLexerKind CurLexerKind; member 245 IncludeStackInfo(enum CurLexerKind K, Lexer *L, PTHLexer* P, in IncludeStackInfo() 248 : CurLexerKind(K), TheLexer(L), ThePTHLexer(P), ThePPLexer(PPL), in IncludeStackInfo() 596 switch (CurLexerKind) { in Lex() 1093 IncludeMacroStack.push_back(IncludeStackInfo(CurLexerKind, in PushIncludeMacroStack() 1108 CurLexerKind = IncludeMacroStack.back().CurLexerKind; in PopIncludeMacroStack()
|