Lines Matching refs:ArgE
42 genReportNullAttrNonNull(const ExplodedNode *ErrorN, const Expr *ArgE,
46 const Expr *ArgE) const;
133 const Expr *ArgE = Call.getArgExpr(idx); in checkPreCall() local
145 if (!ArgE) in checkPreCall()
148 QualType T = ArgE->getType(); in checkPreCall()
168 if (const auto *CE = dyn_cast<CompoundLiteralExpr>(ArgE)) in checkPreCall()
170 ArgE = dyn_cast<Expr>(*(IE->begin())); in checkPreCall()
184 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1); in checkPreCall()
186 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
279 const Expr *ArgE, in genReportNullAttrNonNull() argument
296 if (ArgE) in genReportNullAttrNonNull()
297 bugreporter::trackExpressionValue(ErrorNode, ArgE, *R); in genReportNullAttrNonNull()
304 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportReferenceToNullPointer()
310 if (ArgE) { in genReportReferenceToNullPointer()
311 const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE); in genReportReferenceToNullPointer()
313 ArgEDeref = ArgE; in genReportReferenceToNullPointer()