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(),
256 !isEndOfMacro && !(CurLexer && CurLexer->Is_PragmaLexer)) {
271 if (CurLexer) {
273 CurLexer->FormTokenWithChars(Result, CurLexer->BufferEnd, tok::eof);
274 CurLexer.reset()
    [all...]
PPDirectives.cpp 228 CurLexer->Lex(Tok);
242 if (CurLexer->getFileLoc() != CodeCompletionFileLoc)
260 if (CurLexer) CurLexer->SetKeepWhitespaceMode(false);
271 if (CurLexer) CurLexer->resetExtendedTokenMode();
287 if (CurLexer) CurLexer->resetExtendedTokenMode();
304 if (CurLexer) CurLexer->resetExtendedTokenMode()
    [all...]
Preprocessor.cpp 330 if (CurLexer)
472 CurLexer->SkipBytes(SkipMainFilePreamble.first,
Pragma.cpp 359 if (CurLexer)
360 CurLexer->ReadToEndOfLine();
    [all...]
PPMacroExpansion.cpp 269 if (CurLexer)
270 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.
729 case CLK_Lexer: CurLexer->Lex(Result); break;
    [all...]

Completed in 56 milliseconds