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

  /external/clang/lib/Lex/
PPLexerChange.cpp 53 return CurPPLexer;
114 if (CurPPLexer || CurTokenLexer)
118 CurPPLexer = TheLexer;
138 if (CurPPLexer || CurTokenLexer)
143 CurPPLexer = CurPTHLexer.get();
149 FileID FID = CurPPLexer->getFileID();
242 if (CurPPLexer) { // Not ending a macro, ignore it.
244 CurPPLexer->MIOpt.GetControllingMacroAtEndOfFile()) {
247 SourceMgr.getFileEntryForID(CurPPLexer->getFileID()))
268 if (isCodeCompletionEnabled() && CurPPLexer &
    [all...]
PPDirectives.cpp 213 assert(CurTokenLexer == 0 && CurPPLexer && "Lexing a macro, not a file?");
215 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/false,
225 CurPPLexer->LexingRawMode = true;
241 while (!CurPPLexer->ConditionalStack.empty()) {
243 Diag(CurPPLexer->ConditionalStack.back().IfLoc,
245 CurPPLexer->ConditionalStack.pop_back();
259 CurPPLexer->ParsingPreprocessorDirective = true;
269 CurPPLexer->ParsingPreprocessorDirective = false;
285 CurPPLexer->ParsingPreprocessorDirective = false;
302 CurPPLexer->ParsingPreprocessorDirective = false
    [all...]
Pragma.cpp 116 || (CurPPLexer && CurPPLexer->ParsingPreprocessorDirective))
358 assert(CurPPLexer && "No current lexer?");
377 if (CurPPLexer) CurPPLexer->LexingRawMode = true;
379 if (CurPPLexer) CurPPLexer->LexingRawMode = false;
445 CurPPLexer->LexIncludeFilename(FilenameTok);
747 CurPPLexer->LexIncludeFilename(SourceFilenameTok);
779 CurPPLexer->LexIncludeFilename(ReplaceFilenameTok)
    [all...]
Preprocessor.cpp 70 CodeCompletionReached(0), SkipMainFilePreamble(0, true), CurPPLexer(0),
640 if (II.isPoisoned() && CurPPLexer) {
PPMacroExpansion.cpp 280 if (CurPPLexer)
315 if (CurPPLexer) CurPPLexer->MIOpt.ExpandedMacro();
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 253 /// CurPPLexer - This is the current top of the stack what we're lexing from
256 PreprocessorLexer *CurPPLexer;
496 return CurPPLexer == L;
502 PreprocessorLexer *getCurrentLexer() const { return CurPPLexer; }
    [all...]

Completed in 34 milliseconds