reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/misc/RedundantExpressionCheck.cpp
  414   std::string CastId = (Id + "-cast").str();
  415   std::string SwapId = (Id + "-swap").str();
  416   std::string NegateId = (Id + "-negate").str();
  417   std::string OverloadId = (Id + "-overload").str();
  420       isComparisonOperator(), expr().bind(Id),
  421       anyOf(allOf(hasLHS(matchSymbolicExpr(Id)),
  422                   hasRHS(matchIntegerConstantExpr(Id))),
  423             allOf(hasLHS(matchIntegerConstantExpr(Id)),
  424                   hasRHS(matchSymbolicExpr(Id)), expr().bind(SwapId)))));
  430                        hasSourceExpression(matchSymbolicExpr(Id)))