Home | History | Annotate | Download | only in Sema

Lines Matching defs:StrLen

4208   size_t StrLen
4224 if (StrLen == 0 && numDataArgs > 0) {
4239 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
4249 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
4264 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
4265 return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen,
4967 // Look for 'strlcpy(dst, x, strlen(x))'
4978 // Determine if the argument to sizeof/strlen is equal to the source
5034 // strncat(dst, src, sizeof(dst) - strlen(dest) - 1);
5062 // - sizeof(dst) - strlen(dst)
5109 OS << "strlen(";