Searched refs:canResolveToExpr (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ExprMutationAnalyzer.cpp | 105 AST_MATCHER_P(Stmt, canResolveToExpr, const Stmt *, Inner) { in AST_MATCHER_P() argument 279 stmt(canResolveToExpr(Exp), in isUnevaluated() 337 binaryOperator(isAssignmentOperator(), hasLHS(canResolveToExpr(Exp))); in findDirectMutation() 342 hasUnaryOperand(canResolveToExpr(Exp))); in findDirectMutation() 349 cxxMemberCallExpr(on(canResolveToExpr(Exp)), unless(isConstCallee())), in findDirectMutation() 351 hasArgument(0, canResolveToExpr(Exp))), in findDirectMutation() 357 hasEitherOperand(ignoringImpCasts(canResolveToExpr(Exp)))), in findDirectMutation() 361 cxxFoldExpr(hasFoldInit(ignoringImpCasts(canResolveToExpr(Exp)))), in findDirectMutation() 366 unresolvedMemberExpr(hasObjectExpression(canResolveToExpr(Exp))), in findDirectMutation() 368 hasObjectExpression(canResolveToExpr(Exp))))))), in findDirectMutation() [all …]
|