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 117 CurLexer.reset(TheLexer);
124 if (Callbacks && !CurLexer->Is_PragmaLexer) {
126 SourceMgr.getFileCharacteristic(CurLexer->getFileLoc());
128 Callbacks->FileChanged(CurLexer->getFileLoc(),
252 !isEndOfMacro && !(CurLexer && CurLexer->Is_PragmaLexer)) {
267 if (CurLexer) {
269 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
270 CurLexer.reset()
    [all...]
PPDirectives.cpp 222 CurLexer->Lex(Tok);
236 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
254 if (CurLexer) CurLexer->SetCommentRetentionState(false);
265 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
281 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments);
298 if (CurLexer) CurLexer->SetCommentRetentionState(KeepComments)
    [all...]
Preprocessor.cpp 274 if (CurLexer)
416 CurLexer->SkipBytes(SkipMainFilePreamble.first,
PPMacroExpansion.cpp 153 if (CurLexer)
154 Val = CurLexer->isNextPPTokenLParen();
    [all...]
Pragma.cpp 332 if (CurLexer)
333 CurLexer->ReadToEndOfLine();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 201 /// CurLexer - This is the current top of the stack that we're lexing from if
203 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
204 OwningPtr<Lexer> CurLexer;
208 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
212 /// if not expanding a macro. This is an alias for either CurLexer or
217 /// FileEntry, if CurLexer is non-null and if applicable. This allows us to
222 /// expanding a macro. One of CurLexer and CurTokenLexer must be null.
236 /// CurLexer/CurTokenLexer.
597 case CLK_Lexer: CurLexer->Lex(Result); break;
699 /// \brief Recompute the current lexer kind based on the CurLexer/CurPTHLexer
    [all...]

Completed in 85 milliseconds