Home | History | Annotate | Download | only in Sema

Lines Matching refs:StrLen

3535   size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size());
3551 if (StrLen == 0 && numDataArgs > 0) {
3565 if (!analyze_format_string::ParsePrintfString(H, Str, Str + StrLen,
3574 if (!analyze_format_string::ParseScanfString(H, Str, Str + StrLen,
4269 // Look for 'strlcpy(dst, x, strlen(x))'
4280 // Determine if the argument to sizeof/strlen is equal to the source
4336 // strncat(dst, src, sizeof(dst) - strlen(dest) - 1);
4364 // - sizeof(dst) - strlen(dst)
4411 OS << "strlen(";