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

  /external/clang/lib/Lex/
PPLexerChange.cpp 114 CurLexer.reset(TheLexer);
121 if (Callbacks && !CurLexer->Is_PragmaLexer) {
123 SourceMgr.getFileCharacteristic(CurLexer->getFileLoc());
125 Callbacks->FileChanged(CurLexer->getFileLoc(),
244 !isEndOfMacro && !(CurLexer && CurLexer->Is_PragmaLexer)) {
259 if (CurLexer) {
261 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
262 CurLexer.reset()
    [all...]
PPDirectives.cpp 214 CurLexer->Lex(Tok);
228 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
246 if (CurLexer) CurLexer->SetCommentRetentionState(false);
257 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
273 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
290 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments)
    [all...]
Preprocessor.cpp 397 CurLexer->SkipBytes(SkipMainFilePreamble.first,
552 if (CurLexer)
PPMacroExpansion.cpp 143 if (CurLexer)
144 Val = CurLexer->isNextPPTokenLParen();
    [all...]
Pragma.cpp 263 if (CurLexer)
264 CurLexer->ReadToEndOfLine();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 183 /// CurLexer - This is the current top of the stack that we're lexing from if
185 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
186 llvm::OwningPtr<Lexer> CurLexer;
190 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
194 /// if not expanding a macro. This is an alias for either CurLexer or
199 /// FileEntry, if CurLexer is non-null and if applicable. This allows us to
204 /// expanding a macro. One of CurLexer and CurTokenLexer must be null.
218 /// CurLexer/CurTokenLexer.
582 case CLK_Lexer: CurLexer->Lex(Result); break;
    [all...]

Completed in 23 milliseconds