Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp675 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
689 CurrentPreprocessor = PP; in BeginSourceFile()
701 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
711 if (CurrentPreprocessor) in EndSourceFile()
712 const_cast<Preprocessor *>(CurrentPreprocessor)-> in EndSourceFile()
720 CurrentPreprocessor = nullptr; in EndSourceFile()
747 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
750 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h117 const Preprocessor *CurrentPreprocessor = nullptr; variable