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()
187 const Expr *ExprInspectionChecker::getArgExpr(const CallExpr *CE, in getArgExpr()
196 const MemRegion *ExprInspectionChecker::getArgRegion(const CallExpr *CE, in getArgRegion()
211 void ExprInspectionChecker::analyzerEval(const CallExpr *CE, in analyzerEval()
223 void ExprInspectionChecker::analyzerWarnIfReached(const CallExpr *CE, in analyzerWarnIfReached()
228 void ExprInspectionChecker::analyzerNumTimesReached(const CallExpr *CE, in analyzerNumTimesReached()
237 void ExprInspectionChecker::analyzerCheckInlined(const CallExpr *CE, in analyzerCheckInlined()
252 void ExprInspectionChecker::analyzerExplain(const CallExpr *CE, in analyzerExplain()
287 void ExprInspectionChecker::analyzerValue(const CallExpr *CE, in analyzerValue()
302 void ExprInspectionChecker::analyzerDumpSValType(const CallExpr *CE, in analyzerDumpSValType()
312 void ExprInspectionChecker::analyzerDump(const CallExpr *CE, in analyzerDump()
322 void ExprInspectionChecker::analyzerGetExtent(const CallExpr *CE, in analyzerGetExtent()
335 void ExprInspectionChecker::analyzerDumpExtent(const CallExpr *CE, in analyzerDumpExtent()
346 void ExprInspectionChecker::analyzerDumpElementCount(const CallExpr *CE, in analyzerDumpElementCount()
366 void ExprInspectionChecker::analyzerPrintState(const CallExpr *CE, in analyzerPrintState()
371 void ExprInspectionChecker::analyzerWarnOnDeadSymbol(const CallExpr *CE, in analyzerWarnOnDeadSymbol()
422 void ExprInspectionChecker::analyzerCrash(const CallExpr *CE, in analyzerCrash()
427 void ExprInspectionChecker::analyzerHashDump(const CallExpr *CE, in analyzerHashDump()
439 void ExprInspectionChecker::analyzerDenote(const CallExpr *CE, in analyzerDenote()
524 void ExprInspectionChecker::analyzerExpress(const CallExpr *CE, in analyzerExpress()
547 void ExprInspectionChecker::analyzerIsTainted(const CallExpr *CE, in analyzerIsTainted()