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

References

tools/clang/tools/extra/clang-tidy/cppcoreguidelines/ProBoundsConstantArrayIndexCheck.cpp
   75   if (!IndexExpr->isIntegerConstantExpr(Index, *Result.Context, nullptr,
  113   if (Index.isSigned() && Index.isNegative()) {
  113   if (Index.isSigned() && Index.isNegative()) {
  115         << Index.toString(10);
  130   if (Index.getZExtValue() >= ArraySize.getZExtValue()) {
  134         << Index.toString(10) << ArraySize.toString(10, false);