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

References

tools/clang/tools/extra/clang-tidy/bugprone/BranchCloneCheck.cpp
  193       while (EndCurrent < End &&
  194              areSwitchBranchesIdentical(*BeginCurrent, *EndCurrent, Context)) {
  195         ++EndCurrent;
  199       if (EndCurrent > BeginCurrent + 1) {
  202             << static_cast<int>(std::distance(BeginCurrent, EndCurrent));
  204         SourceLocation EndLoc = (EndCurrent - 1)->back()->getEndLoc();
  210           EndLoc = (EndCurrent - 1)->back()->getBeginLoc();
  221       BeginCurrent = EndCurrent;