Home
last modified time | relevance | path

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

/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp680 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
694 CurrentPreprocessor = PP; in BeginSourceFile()
706 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
716 if (CurrentPreprocessor) in EndSourceFile()
717 const_cast<Preprocessor *>(CurrentPreprocessor)-> in EndSourceFile()
725 CurrentPreprocessor = nullptr; in EndSourceFile()
752 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
755 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h117 const Preprocessor *CurrentPreprocessor = nullptr; variable