Lines Matching refs:CallExpr

36   mutable llvm::DenseMap<const CallExpr *, ReachedStat> ReachedStats;
38 void analyzerEval(const CallExpr *CE, CheckerContext &C) const;
39 void analyzerCheckInlined(const CallExpr *CE, CheckerContext &C) const;
40 void analyzerWarnIfReached(const CallExpr *CE, CheckerContext &C) const;
41 void analyzerNumTimesReached(const CallExpr *CE, CheckerContext &C) const;
42 void analyzerCrash(const CallExpr *CE, CheckerContext &C) const;
43 void analyzerWarnOnDeadSymbol(const CallExpr *CE, CheckerContext &C) const;
44 void analyzerValue(const CallExpr *CE, CheckerContext &C) const;
45 void analyzerDumpSValType(const CallExpr *CE, CheckerContext &C) const;
46 void analyzerDump(const CallExpr *CE, CheckerContext &C) const;
47 void analyzerExplain(const CallExpr *CE, CheckerContext &C) const;
48 void analyzerPrintState(const CallExpr *CE, CheckerContext &C) const;
49 void analyzerGetExtent(const CallExpr *CE, CheckerContext &C) const;
50 void analyzerDumpExtent(const CallExpr *CE, CheckerContext &C) const;
51 void analyzerDumpElementCount(const CallExpr *CE, CheckerContext &C) const;
52 void analyzerHashDump(const CallExpr *CE, CheckerContext &C) const;
53 void analyzerDenote(const CallExpr *CE, CheckerContext &C) const;
54 void analyzerExpress(const CallExpr *CE, CheckerContext &C) const;
55 void analyzerIsTainted(const CallExpr *CE, CheckerContext &C) const;
57 typedef void (ExprInspectionChecker::*FnCheck)(const CallExpr *,
67 const Expr *getArgExpr(const CallExpr *CE, CheckerContext &C) const;
68 const MemRegion *getArgRegion(const CallExpr *CE, CheckerContext &C) const;
83 const auto *CE = dyn_cast_or_null<CallExpr>(Call.getOriginExpr()); in REGISTER_SET_WITH_PROGRAMSTATE()
133 static const char *getArgumentValueString(const CallExpr *CE, in getArgumentValueString()
191 const Expr *ExprInspectionChecker::getArgExpr(const CallExpr *CE, in getArgExpr()
200 const MemRegion *ExprInspectionChecker::getArgRegion(const CallExpr *CE, in getArgRegion()
215 void ExprInspectionChecker::analyzerEval(const CallExpr *CE, in analyzerEval()
227 void ExprInspectionChecker::analyzerWarnIfReached(const CallExpr *CE, in analyzerWarnIfReached()
232 void ExprInspectionChecker::analyzerNumTimesReached(const CallExpr *CE, in analyzerNumTimesReached()
241 void ExprInspectionChecker::analyzerCheckInlined(const CallExpr *CE, in analyzerCheckInlined()
256 void ExprInspectionChecker::analyzerExplain(const CallExpr *CE, in analyzerExplain()
291 void ExprInspectionChecker::analyzerValue(const CallExpr *CE, in analyzerValue()
306 void ExprInspectionChecker::analyzerDumpSValType(const CallExpr *CE, in analyzerDumpSValType()
316 void ExprInspectionChecker::analyzerDump(const CallExpr *CE, in analyzerDump()
326 void ExprInspectionChecker::analyzerGetExtent(const CallExpr *CE, in analyzerGetExtent()
339 void ExprInspectionChecker::analyzerDumpExtent(const CallExpr *CE, in analyzerDumpExtent()
350 void ExprInspectionChecker::analyzerDumpElementCount(const CallExpr *CE, in analyzerDumpElementCount()
370 void ExprInspectionChecker::analyzerPrintState(const CallExpr *CE, in analyzerPrintState()
375 void ExprInspectionChecker::analyzerWarnOnDeadSymbol(const CallExpr *CE, in analyzerWarnOnDeadSymbol()
427 void ExprInspectionChecker::analyzerCrash(const CallExpr *CE, in analyzerCrash()
432 void ExprInspectionChecker::analyzerHashDump(const CallExpr *CE, in analyzerHashDump()
444 void ExprInspectionChecker::analyzerDenote(const CallExpr *CE, in analyzerDenote()
529 void ExprInspectionChecker::analyzerExpress(const CallExpr *CE, in analyzerExpress()
552 void ExprInspectionChecker::analyzerIsTainted(const CallExpr *CE, in analyzerIsTainted()