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

References

tools/clang/tools/extra/clang-tidy/readability/SimplifyBooleanExprCheck.cpp
  507   Finder->addMatcher(translationUnitDecl().bind("top"), this);
  509   matchBoolCondition(Finder, true, ConditionThenStmtId);
  510   matchBoolCondition(Finder, false, ConditionElseStmtId);
  512   matchTernaryResult(Finder, true, TernaryId);
  513   matchTernaryResult(Finder, false, TernaryNegatedId);
  515   matchIfReturnsBool(Finder, true, IfReturnsBoolId);
  516   matchIfReturnsBool(Finder, false, IfReturnsNotBoolId);
  518   matchIfAssignsBool(Finder, true, IfAssignBoolId);
  519   matchIfAssignsBool(Finder, false, IfAssignNotBoolId);
  521   matchCompoundIfReturnsBool(Finder, true, CompoundBoolId);
  522   matchCompoundIfReturnsBool(Finder, false, CompoundNotBoolId);