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(),
277 !isEndOfMacro && !(CurLexer && CurLexer->Is_PragmaLexer)) {
292 if (CurLexer) {
294 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
295 CurLexer.reset()
    [all...]
PPDirectives.cpp 260 CurLexer->Lex(Tok);
274 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
292 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
303 if (CurLexer) CurLexer->resetExtendedTokenMode();
319 if (CurLexer) CurLexer->resetExtendedTokenMode();
336 if (CurLexer) CurLexer->resetExtendedTokenMode()
    [all...]
Preprocessor.cpp 332 if (CurLexer)
474 CurLexer->SkipBytes(SkipMainFilePreamble.first,
Pragma.cpp 364 if (CurLexer)
365 CurLexer->ReadToEndOfLine();
    [all...]
PPMacroExpansion.cpp 173 if (CurLexer)
174 Val = CurLexer->isNextPPTokenLParen();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 243 /// CurLexer - This is the current top of the stack that we're lexing from if
245 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
246 OwningPtr<Lexer> CurLexer;
250 /// Only one of CurLexer, CurPTHLexer, or CurTokenLexer will be non-null.
254 /// if not expanding a macro. This is an alias for either CurLexer or
259 /// FileEntry, if CurLexer is non-null and if applicable. This allows us to
264 /// expanding a macro. One of CurLexer and CurTokenLexer must be null.
278 /// CurLexer/CurTokenLexer.
723 case CLK_Lexer: CurLexer->Lex(Result); break;
    [all...]

Completed in 113 milliseconds