Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp672 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
686 CurrentPreprocessor = PP; in BeginSourceFile()
698 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
708 if (CurrentPreprocessor) in EndSourceFile()
709 const_cast<Preprocessor *>(CurrentPreprocessor)-> in EndSourceFile()
717 CurrentPreprocessor = nullptr; in EndSourceFile()
744 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
747 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h265 const Preprocessor *CurrentPreprocessor = nullptr; variable