Lines Matching refs:PP
31 CommentHandlerVisitor() : base(), PP(nullptr), Verified(false) {} in CommentHandlerVisitor()
37 bool HandleComment(Preprocessor &PP, SourceRange Loc) override { in HandleComment() argument
38 assert(&PP == this->PP && "Preprocessor changed!"); in HandleComment()
41 SourceManager &SM = PP.getSourceManager(); in HandleComment()
64 Preprocessor *PP; member in clang::CommentHandlerVisitor
77 V->PP = &CI.getPreprocessor(); in BeginSourceFileAction()
78 V->PP->addCommentHandler(V); in BeginSourceFileAction()
85 V->PP->removeCommentHandler(V); in EndSourceFileAction()
93 Preprocessor *PP; member in clang::CommentVerifier
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP) in CommentVerifier() argument
97 : Current(Comments.begin()), End(Comments.end()), PP(PP) in CommentVerifier()
100 CommentVerifier(CommentVerifier &&C) : Current(C.Current), End(C.End), PP(C.PP) { in CommentVerifier()
129 return CommentVerifier(Comments, PP); in GetVerifier()