Lines Matching refs:ArgE
40 genReportNullAttrNonNull(const ExplodedNode *ErrorN, const Expr *ArgE) const;
43 const Expr *ArgE) const;
95 const Expr *ArgE = Call.getArgExpr(idx); in checkPreCall() local
107 if (!ArgE) in checkPreCall()
110 QualType T = ArgE->getType(); in checkPreCall()
127 if (const CompoundLiteralExpr *CE = dyn_cast<CompoundLiteralExpr>(ArgE)) in checkPreCall()
130 ArgE = dyn_cast<Expr>(*(IE->begin())); in checkPreCall()
150 R = genReportNullAttrNonNull(errorNode, ArgE); in checkPreCall()
152 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
185 const Expr *ArgE) const { in genReportNullAttrNonNull()
196 if (ArgE) in genReportNullAttrNonNull()
197 bugreporter::trackNullOrUndefValue(ErrorNode, ArgE, *R); in genReportNullAttrNonNull()
203 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportReferenceToNullPointer()
209 if (ArgE) { in genReportReferenceToNullPointer()
210 const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE); in genReportReferenceToNullPointer()
212 ArgEDeref = ArgE; in genReportReferenceToNullPointer()