Lines Matching defs:Finder
50 void registerMatchersForGetArrowStart(MatchFinder *Finder,
63 Finder->addMatcher(memberExpr(expr().bind("memberExpr"), isArrow(),
68 Finder->addMatcher(
75 Finder->addMatcher(
80 Finder->addMatcher(ifStmt(hasCondition(CallToGetAsBool)), Callback);
83 Finder->addMatcher(conditionalOperator(hasCondition(CallToGetAsBool)),
86 Finder->addMatcher(cxxDependentScopeMemberExpr(hasObjectExpression(
91 void registerMatchersForGetEquals(MatchFinder *Finder,
99 Finder->addMatcher(
116 void RedundantSmartptrGetCheck::registerMatchers(MatchFinder *Finder) {
117 registerMatchersForGetArrowStart(Finder, this);
118 registerMatchersForGetEquals(Finder, this);