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

Declarations

tools/clang/tools/extra/clang-tidy/utils/ExprSequence.h
   80   bool potentiallyAfter(const Stmt *After, const Stmt *Before) const;

References

tools/clang/tools/extra/clang-tidy/bugprone/UseAfterMoveCheck.cpp
  137     if (MovingCall && Sequence->potentiallyAfter(MovingCall, Reinit))
  146     if (!MovingCall || Sequence->potentiallyAfter(Use, MovingCall)) {
  152         if (!Sequence->potentiallyAfter(Reinit, Use))
  165             Sequence->potentiallyAfter(MovingCall, Use);