Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp688 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
702 CurrentPreprocessor = PP; in BeginSourceFile()
714 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
724 if (CurrentPreprocessor) in EndSourceFile()
725 const_cast<Preprocessor *>(CurrentPreprocessor)-> in EndSourceFile()
733 CurrentPreprocessor = nullptr; in EndSourceFile()
760 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
763 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h125 const Preprocessor *CurrentPreprocessor = nullptr; variable