HomeSort by: relevance | last modified time | path
    Searched refs:CurPPLexer (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPLexerChange.cpp 50 return CurPPLexer;
102 if (CurPPLexer || CurTokenLexer)
106 CurPPLexer = TheLexer;
329 if (CurPPLexer) { // Not ending a macro, ignore it.
331 CurPPLexer->MIOpt.GetControllingMacroAtEndOfFile()) {
333 if (const FileEntry *FE = CurPPLexer->getFileEntry()) {
339 CurPPLexer->MIOpt.GetDefinedMacro()) {
358 Diag(CurPPLexer->MIOpt.GetMacroLocation(),
360 << CurPPLexer->MIOpt.GetMacroLocation() << ControllingMacro;
361 Diag(CurPPLexer->MIOpt.GetDefinedLocation()
    [all...]
PPDirectives.cpp 442 assert(!CurTokenLexer && CurPPLexer && "Lexing a macro, not a file?");
447 CurPPLexer->pushConditionalLevel(IfTokenLoc, /*isSkipping*/ false,
452 CurPPLexer->LexingRawMode = true;
488 CurPPLexer->ParsingPreprocessorDirective = true;
498 CurPPLexer->ParsingPreprocessorDirective = false;
514 CurPPLexer->ParsingPreprocessorDirective = false;
531 CurPPLexer->ParsingPreprocessorDirective = false;
548 CurPPLexer->pushConditionalLevel(Tok.getLocation(), /*wasskipping*/true,
557 bool InCond = CurPPLexer->popConditionalLevel(CondInfo);
565 CurPPLexer->LexingRawMode = false
    [all...]
Pragma.cpp 181 || (CurPPLexer && CurPPLexer->ParsingPreprocessorDirective))
416 assert(CurPPLexer && "No current lexer?");
430 if (CurPPLexer) CurPPLexer->LexingRawMode = true;
432 if (CurPPLexer) CurPPLexer->LexingRawMode = false;
Preprocessor.cpp 669 assert(CurPPLexer &&
670 "CurPPLexer is null when calling replayPreambleConditionalStack.");
671 CurPPLexer->setConditionalLevels(PreambleConditionalStack.getStack());
821 if (II.isPoisoned() && CurPPLexer) {
989 if (CurPPLexer)
990 CurPPLexer->LexIncludeFilename(FilenameTok);
PPMacroExpansion.cpp 447 if (CurPPLexer)
479 if (CurPPLexer) CurPPLexer->MIOpt.ExpandedMacro();
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 508 PreprocessorLexer *CurPPLexer = nullptr;
992 return CurPPLexer == L;
999 PreprocessorLexer *getCurrentLexer() const { return CurPPLexer; }
2046 std::move(CurLexer), CurPPLexer,
2048 CurPPLexer = nullptr;
2053 CurPPLexer = IncludeMacroStack.back().ThePPLexer;
2209 return IsFileLexer(CurLexer.get(), CurPPLexer);
2219 return !CurPPLexer && !CurTokenLexer && !IncludeMacroStack.empty();

Completed in 65 milliseconds