Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp64 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
104 CurrentPreprocessor = PP; in BeginSourceFile()
116 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
126 if (CurrentPreprocessor) in EndSourceFile()
127 const_cast<Preprocessor *>(CurrentPreprocessor)-> in EndSourceFile()
132 CurrentPreprocessor = nullptr; in EndSourceFile()
159 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
162 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DVerifyDiagnosticConsumer.h221 const Preprocessor *CurrentPreprocessor = nullptr; variable