Home
last modified time | relevance | path

Searched refs:CurrentPreprocessor (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp669 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
683 CurrentPreprocessor = PP; in BeginSourceFile()
695 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
705 if (CurrentPreprocessor) in EndSourceFile()
706 const_cast<Preprocessor *>(CurrentPreprocessor)-> in EndSourceFile()
714 CurrentPreprocessor = nullptr; in EndSourceFile()
741 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
744 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/llvm-project-15.0.7/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h265 const Preprocessor *CurrentPreprocessor = nullptr; variable