Home
last modified time | relevance | path

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

/external/clang/lib/Frontend/
DVerifyDiagnosticConsumer.cpp33 Buffer(new TextDiagnosticBuffer()), CurrentPreprocessor(nullptr), in VerifyDiagnosticConsumer()
43 assert(!CurrentPreprocessor && "CurrentPreprocessor should be invalid!"); in ~VerifyDiagnosticConsumer()
78 CurrentPreprocessor = PP; in BeginSourceFile()
90 assert((!PP || CurrentPreprocessor == PP) && "Preprocessor changed!"); in BeginSourceFile()
100 if (CurrentPreprocessor) in EndSourceFile()
101 const_cast<Preprocessor*>(CurrentPreprocessor)->removeCommentHandler(this); in EndSourceFile()
105 CurrentPreprocessor = nullptr; in EndSourceFile()
132 if (FE && CurrentPreprocessor && SrcManager->isLoadedFileID(FID)) { in HandleDiagnostic()
135 HeaderSearch &HS = CurrentPreprocessor->getHeaderSearchInfo(); in HandleDiagnostic()
/external/clang/include/clang/Frontend/
DVerifyDiagnosticConsumer.h217 const Preprocessor *CurrentPreprocessor; variable