Lines Matching refs:ShortMsg
88 BugReportPtr createBugReport(StringRef ShortMsg, StringRef Msg) const;
185 std::string ShortMsg = formatv( in checkOvershift() local
193 return createBugReport(ShortMsg, Msg); in checkOvershift()
215 std::string ShortMsg = formatv("{0} operand is negative in {1} shift", in checkOperandNegative() local
225 return createBugReport(ShortMsg, Msg); in checkOperandNegative()
273 std::string ShortMsg, Msg; in checkLeftShiftOverflow() local
280 ShortMsg = formatv( in checkLeftShiftOverflow()
288 ShortMsg = formatv("Left shift of '{0}' overflows the capacity of '{1}'", in checkLeftShiftOverflow()
295 return createBugReport(ShortMsg, Msg); in checkLeftShiftOverflow()
333 BitwiseShiftValidator::createBugReport(StringRef ShortMsg, StringRef Msg) const { in createBugReport() argument
337 std::make_unique<PathSensitiveBugReport>(BT, ShortMsg, Msg, ErrNode); in createBugReport()