Lines Matching refs:PP
31 CommentHandlerVisitor() : base(), PP(0), Verified(false) { } in CommentHandlerVisitor()
37 virtual bool HandleComment(Preprocessor &PP, SourceRange Loc) { 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()
125 return CommentVerifier(Comments, PP); in GetVerifier()