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

References

tools/clang/tools/extra/clang-tidy/bugprone/SuspiciousMemsetUsageCheck.cpp
   57           Result.Nodes.getNodeAs<CharacterLiteral>("char-zero-fill")) {
   74                Result.Nodes.getNodeAs<IntegerLiteral>("num-fill")) {
   78     const auto UCharMax = (1 << Result.Context->getCharWidth()) - 1;
   80     if (!NumFill->EvaluateAsInt(EVResult, *Result.Context))
   91   else if (const auto *Call = Result.Nodes.getNodeAs<CallExpr>("call")) {
  101         !ByteCount->EvaluateAsInt(Value2, *Result.Context) ||
  110         FillChar->EvaluateAsInt(EVResult, *Result.Context)) {
  121     StringRef RHSString = tooling::fixit::getText(*ByteCount, *Result.Context);
  122     StringRef LHSString = tooling::fixit::getText(*FillChar, *Result.Context);