Lines Matching refs:StrLen

1122                                        StringRef &FormatStrRef, size_t &StrLen,  in ProcessFormatStringLiteral()  argument
1132 StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, FormatStrRef.find(0)); in ProcessFormatStringLiteral()
1290 size_t StrLen; in checkFortifiedBuiltinMemoryFunction() local
1291 if (!ProcessFormatStringLiteral(FormatExpr, FormatStrRef, StrLen, Context)) in checkFortifiedBuiltinMemoryFunction()
1310 FormatBytes + StrLen, getLangOpts(), in checkFortifiedBuiltinMemoryFunction()
1325 size_t StrLen; in checkFortifiedBuiltinMemoryFunction() local
1326 if (ProcessFormatStringLiteral(FormatExpr, FormatStrRef, StrLen, Context)) { in checkFortifiedBuiltinMemoryFunction()
1330 H, FormatBytes, FormatBytes + StrLen, getLangOpts(), in checkFortifiedBuiltinMemoryFunction()
1413 size_t StrLen; in checkFortifiedBuiltinMemoryFunction() local
1415 ProcessFormatStringLiteral(FormatExpr, FormatStrRef, StrLen, Context)) { in checkFortifiedBuiltinMemoryFunction()
1419 H, FormatBytes, FormatBytes + StrLen, getLangOpts(), in checkFortifiedBuiltinMemoryFunction()
7833 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size()); in CheckFormatString() local
7838 Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo())) in CheckFormatString()
7853 if (StrLen == 0 && numDataArgs > 0) { in CheckFormatString()
7871 H, Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo(), in CheckFormatString()
7880 H, Str, Str + StrLen, S.getLangOpts(), S.Context.getTargetInfo())) in CheckFormatString()
7893 size_t StrLen = std::min(std::max(TypeSize, size_t(1)) - 1, StrRef.size()); in FormatStringHasSArg() local
7894 return analyze_format_string::ParseFormatStringHasSArg(Str, Str + StrLen, in FormatStringHasSArg()
8192 template <std::size_t StrLen>
8194 const char (&Str)[StrLen]) { in IsStdFunction() argument