Searched refs:canResolveToExpr (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ExprMutationAnalyzer.cpp | 106 AST_MATCHER_P(Stmt, canResolveToExpr, const Stmt *, Inner) { in AST_MATCHER_P() argument 387 binaryOperator(isAssignmentOperator(), hasLHS(canResolveToExpr(Exp))); in findDirectMutation() 392 hasUnaryOperand(canResolveToExpr(Exp))); in findDirectMutation() 399 cxxMemberCallExpr(on(canResolveToExpr(Exp)), unless(isConstCallee())), in findDirectMutation() 401 hasArgument(0, canResolveToExpr(Exp))), in findDirectMutation() 407 hasEitherOperand(ignoringImpCasts(canResolveToExpr(Exp)))), in findDirectMutation() 411 cxxFoldExpr(hasFoldInit(ignoringImpCasts(canResolveToExpr(Exp)))), in findDirectMutation() 416 unresolvedMemberExpr(hasObjectExpression(canResolveToExpr(Exp))), in findDirectMutation() 418 hasObjectExpression(canResolveToExpr(Exp))))))), in findDirectMutation() 424 hasObjectExpression(canResolveToExpr(Exp)))))))); in findDirectMutation() [all …]
|