Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/misc/
DRedundantExpressionCheck.cpp521 static ast_matchers::internal::Matcher<Expr> matchSymbolicExpr(StringRef Id) { in matchSymbolicExpr() function
545 hasOperands(matchSymbolicExpr(Id), in matchBinOpIntegerConstantExpr()
548 hasLHS(matchSymbolicExpr(Id)), in matchBinOpIntegerConstantExpr()
578 anyOf(allOf(hasLHS(matchSymbolicExpr(Id)), in matchRelationalIntegerConstantExpr()
581 hasRHS(matchSymbolicExpr(Id)), expr().bind(SwapId))))); in matchRelationalIntegerConstantExpr()
587 hasSourceExpression(matchSymbolicExpr(Id))) in matchRelationalIntegerConstantExpr()
942 const auto SymRight = matchSymbolicExpr("rhs"); in registerMatchers()