Home | History | Annotate | Download | only in Tooling

Lines Matching refs:PP

31   CommentHandlerVisitor() : base(), PP(nullptr), Verified(false) {}
37 virtual bool HandleComment(Preprocessor &PP, SourceRange Loc) {
38 assert(&PP == this->PP && "Preprocessor changed!");
41 SourceManager &SM = PP.getSourceManager();
64 Preprocessor *PP;
77 V->PP = &CI.getPreprocessor();
78 V->PP->addCommentHandler(V);
85 V->PP->removeCommentHandler(V);
93 Preprocessor *PP;
96 CommentVerifier(const CommentList &Comments, Preprocessor *PP)
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
125 return CommentVerifier(Comments, PP);