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

References

tools/clang/tools/extra/clang-tidy/readability/NonConstParameterCheck.cpp
  186     if (U->getOpcode() == UO_PreInc || U->getOpcode() == UO_PreDec ||
  186     if (U->getOpcode() == UO_PreInc || U->getOpcode() == UO_PreDec ||
  187         U->getOpcode() == UO_PostInc || U->getOpcode() == UO_PostDec) {
  187         U->getOpcode() == UO_PostInc || U->getOpcode() == UO_PostDec) {
  189               dyn_cast<UnaryOperator>(U->getSubExpr()->IgnoreParenCasts()))
  191       markCanNotBeConst(U->getSubExpr(), CanNotBeConst);
  192     } else if (U->getOpcode() == UO_Deref) {
  194         markCanNotBeConst(U->getSubExpr(), true);
  196       markCanNotBeConst(U->getSubExpr(), CanNotBeConst);