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

References

tools/clang/tools/extra/clang-tidy/readability/BracesAroundStatementsCheck.cpp
  126   Finder->addMatcher(ifStmt().bind("if"), this);
  127   Finder->addMatcher(whileStmt().bind("while"), this);
  128   Finder->addMatcher(doStmt().bind("do"), this);
  129   Finder->addMatcher(forStmt().bind("for"), this);
  130   Finder->addMatcher(cxxForRangeStmt().bind("for-range"), this);