Lines Matching defs:cert

48 // Checked functions for cert-err33-c.
234 namespace cert {
242 "cert-con54-cpp");
246 "cert-ctr56-cpp");
248 CheckFactories.registerCheck<VariadicFunctionDefCheck>("cert-dcl50-cpp");
250 "cert-dcl51-cpp");
252 "cert-dcl54-cpp");
254 "cert-dcl58-cpp");
256 "cert-dcl59-cpp");
259 "cert-err09-cpp");
260 CheckFactories.registerCheck<SetLongJmpCheck>("cert-err52-cpp");
261 CheckFactories.registerCheck<StaticObjectExceptionCheck>("cert-err58-cpp");
262 CheckFactories.registerCheck<ThrownExceptionTypeCheck>("cert-err60-cpp");
264 "cert-err61-cpp");
267 "cert-mem57-cpp");
269 CheckFactories.registerCheck<LimitedRandomnessCheck>("cert-msc50-cpp");
271 "cert-msc51-cpp");
273 "cert-msc54-cpp");
276 "cert-oop11-cpp");
278 "cert-oop54-cpp");
280 "cert-oop57-cpp");
282 "cert-oop58-cpp");
287 "cert-arr39-c");
290 "cert-con36-c");
292 CheckFactories.registerCheck<misc::StaticAssertCheck>("cert-dcl03-c");
294 "cert-dcl16-c");
296 "cert-dcl37-c");
298 CheckFactories.registerCheck<CommandProcessorCheck>("cert-env33-c");
301 "cert-err33-c");
302 CheckFactories.registerCheck<StrToNumCheck>("cert-err34-c");
305 "cert-exp42-c");
307 CheckFactories.registerCheck<FloatLoopCounter>("cert-flp30-c");
309 "cert-flp37-c");
311 CheckFactories.registerCheck<misc::NonCopyableObjectsCheck>("cert-fio38-c");
314 "cert-int09-c");
317 "cert-msc24-c");
318 CheckFactories.registerCheck<LimitedRandomnessCheck>("cert-msc30-c");
320 "cert-msc32-c");
322 "cert-msc33-c");
325 "cert-pos44-c");
328 "cert-pos47-c");
330 CheckFactories.registerCheck<bugprone::SignalHandlerCheck>("cert-sig30-c");
333 "cert-str34-c");
339 Opts["cert-arr39-c.WarnOnSizeOfConstant"] = "false";
340 Opts["cert-arr39-c.WarnOnSizeOfIntegerExpression"] = "false";
341 Opts["cert-arr39-c.WarnOnSizeOfThis"] = "false";
342 Opts["cert-arr39-c.WarnOnSizeOfCompareToConstant"] = "false";
343 Opts["cert-arr39-c.WarnOnSizeOfPointer"] = "false";
344 Opts["cert-arr39-c.WarnOnSizeOfPointerToAggregate"] = "false";
345 Opts["cert-dcl16-c.NewSuffixes"] = "L;LL;LU;LLU";
346 Opts["cert-err33-c.CheckedFunctions"] = CertErr33CCheckedFunctions;
347 Opts["cert-err33-c.AllowCastToVoid"] = "true";
348 Opts["cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField"] = "false";
349 Opts["cert-str34-c.DiagnoseSignedUnsignedCharComparisons"] = "false";
354 } // namespace cert
357 static ClangTidyModuleRegistry::Add<cert::CERTModule>
358 X("cert-module",