Lines Matching refs:CallExpr

35   mutable llvm::DenseMap<const CallExpr *, ReachedStat> ReachedStats;
37 void analyzerEval(const CallExpr *CE, CheckerContext &C) const;
38 void analyzerCheckInlined(const CallExpr *CE, CheckerContext &C) const;
39 void analyzerWarnIfReached(const CallExpr *CE, CheckerContext &C) const;
40 void analyzerNumTimesReached(const CallExpr *CE, CheckerContext &C) const;
41 void analyzerCrash(const CallExpr *CE, CheckerContext &C) const;
42 void analyzerWarnOnDeadSymbol(const CallExpr *CE, CheckerContext &C) const;
43 void analyzerValue(const CallExpr *CE, CheckerContext &C) const;
44 void analyzerDumpSValType(const CallExpr *CE, CheckerContext &C) const;
45 void analyzerDump(const CallExpr *CE, CheckerContext &C) const;
46 void analyzerExplain(const CallExpr *CE, CheckerContext &C) const;
47 void analyzerPrintState(const CallExpr *CE, CheckerContext &C) const;
48 void analyzerGetExtent(const CallExpr *CE, CheckerContext &C) const;
49 void analyzerDumpExtent(const CallExpr *CE, CheckerContext &C) const;
50 void analyzerDumpElementCount(const CallExpr *CE, CheckerContext &C) const;
51 void analyzerHashDump(const CallExpr *CE, CheckerContext &C) const;
52 void analyzerDenote(const CallExpr *CE, CheckerContext &C) const;
53 void analyzerExpress(const CallExpr *CE, CheckerContext &C) const;
54 void analyzerIsTainted(const CallExpr *CE, CheckerContext &C) const;
56 typedef void (ExprInspectionChecker::*FnCheck)(const CallExpr *,
66 const Expr *getArgExpr(const CallExpr *CE, CheckerContext &C) const;
67 const MemRegion *getArgRegion(const CallExpr *CE, CheckerContext &C) const;
82 const auto *CE = dyn_cast_or_null<CallExpr>(Call.getOriginExpr()); in REGISTER_SET_WITH_PROGRAMSTATE()
131 static const char *getArgumentValueString(const CallExpr *CE, in getArgumentValueString()
188 const Expr *ExprInspectionChecker::getArgExpr(const CallExpr *CE, in getArgExpr()
197 const MemRegion *ExprInspectionChecker::getArgRegion(const CallExpr *CE, in getArgRegion()
212 void ExprInspectionChecker::analyzerEval(const CallExpr *CE, in analyzerEval()
224 void ExprInspectionChecker::analyzerWarnIfReached(const CallExpr *CE, in analyzerWarnIfReached()
229 void ExprInspectionChecker::analyzerNumTimesReached(const CallExpr *CE, in analyzerNumTimesReached()
238 void ExprInspectionChecker::analyzerCheckInlined(const CallExpr *CE, in analyzerCheckInlined()
253 void ExprInspectionChecker::analyzerExplain(const CallExpr *CE, in analyzerExplain()
288 void ExprInspectionChecker::analyzerValue(const CallExpr *CE, in analyzerValue()
303 void ExprInspectionChecker::analyzerDumpSValType(const CallExpr *CE, in analyzerDumpSValType()
313 void ExprInspectionChecker::analyzerDump(const CallExpr *CE, in analyzerDump()
323 void ExprInspectionChecker::analyzerGetExtent(const CallExpr *CE, in analyzerGetExtent()
336 void ExprInspectionChecker::analyzerDumpExtent(const CallExpr *CE, in analyzerDumpExtent()
347 void ExprInspectionChecker::analyzerDumpElementCount(const CallExpr *CE, in analyzerDumpElementCount()
368 void ExprInspectionChecker::analyzerPrintState(const CallExpr *CE, in analyzerPrintState()
373 void ExprInspectionChecker::analyzerWarnOnDeadSymbol(const CallExpr *CE, in analyzerWarnOnDeadSymbol()
425 void ExprInspectionChecker::analyzerCrash(const CallExpr *CE, in analyzerCrash()
430 void ExprInspectionChecker::analyzerHashDump(const CallExpr *CE, in analyzerHashDump()
442 void ExprInspectionChecker::analyzerDenote(const CallExpr *CE, in analyzerDenote()
525 void ExprInspectionChecker::analyzerExpress(const CallExpr *CE, in analyzerExpress()
548 void ExprInspectionChecker::analyzerIsTainted(const CallExpr *CE, in analyzerIsTainted()