Home
last modified time | relevance | path

Searched refs:StatementMatcher (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DGtestMatchers.h45 internal::BindableMatcher<Stmt> gtestAssert(GtestCmp Cmp, StatementMatcher Left,
46 StatementMatcher Right);
49 internal::BindableMatcher<Stmt> gtestAssertThat(StatementMatcher Actual,
50 StatementMatcher Matcher);
54 internal::BindableMatcher<Stmt> gtestExpect(GtestCmp Cmp, StatementMatcher Left,
55 StatementMatcher Right);
58 internal::BindableMatcher<Stmt> gtestExpectThat(StatementMatcher Actual,
59 StatementMatcher Matcher);
64 internal::BindableMatcher<Stmt> gtestExpectCall(StatementMatcher MockObject,
71 internal::BindableMatcher<Stmt> gtestExpectCall(StatementMatcher MockCall,
[all …]
H A DASTMatchFinder.h159 void addMatcher(const StatementMatcher &NodeMatch,
H A DASTMatchers.h144 using StatementMatcher = internal::Matcher<Stmt>; variable
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DRunLoopAutoreleaseLeakChecker.cpp131 static StatementMatcher getRunLoopRunM(StatementMatcher Extra = anything()) { in getRunLoopRunM()
132 StatementMatcher MainRunLoopM = in getRunLoopRunM()
138 StatementMatcher MainRunLoopRunM = objcMessageExpr(hasSelector("run"), in getRunLoopRunM()
142 StatementMatcher XPCRunM = in getRunLoopRunM()
147 static StatementMatcher getOtherMessageSentM(StatementMatcher Extra = anything()) { in getOtherMessageSentM()
157 StatementMatcher RunLoopRunM = getRunLoopRunM(); in checkTempObjectsInSamePool()
158 StatementMatcher OtherMessageSentM = getOtherMessageSentM( in checkTempObjectsInSamePool()
161 StatementMatcher RunLoopInAutorelease = in checkTempObjectsInSamePool()
179 StatementMatcher RunLoopRunM = getRunLoopRunM(NoPoolM); in checkTempObjectsInNoPool()
180 StatementMatcher OtherMessageSentM = getOtherMessageSentM(NoPoolM); in checkTempObjectsInNoPool()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp181 const std::optional<StatementMatcher> &Ignorable = std::nullopt) { in isOptionalMemberCallWithNameMatcher()
190 const std::optional<StatementMatcher> &Ignorable = std::nullopt) { in isOptionalOperatorCallWithName()
691 std::optional<StatementMatcher>
703 StatementMatcher
704 valueCall(const std::optional<StatementMatcher> &IgnorableOptional) { in valueCall()
709 StatementMatcher
710 valueOperatorCall(const std::optional<StatementMatcher> &IgnorableOptional) { in valueOperatorCall()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp622 StatementMatcher WriteIntoIvarM = binaryOperator( in potentiallyWritesIntoIvar()
626 StatementMatcher ParentM = stmt(hasDescendant(WriteIntoIvarM)); in potentiallyWritesIntoIvar()
H A DRegionStore.cpp1073 StatementMatcher RefToStatic = stmt(hasDescendant(declRefExpr( in VisitCluster()