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

References

tools/clang/tools/extra/clang-tidy/bugprone/NotNullTerminatedResultCheck.cpp
  258   if (!isKnownDest(Result))
  261   const Expr *DestCapacityExpr = getDestCapacityExpr(Result);
  262   int DestCapacity = getLength(DestCapacityExpr, Result);
  263   int GivenLength = getGivenLength(Result);
  266     return isGivenLengthEqualToSrcLength(Result) && DestCapacity == GivenLength;
  270   StringRef DestCapacityExprStr = exprToStr(DestCapacityExpr, Result);