Lines Matching refs:ArgE
39 const Expr *ArgE) const;
41 const Expr *ArgE) const;
74 const Expr *ArgE = Call.getArgExpr(idx); in checkPreCall() local
86 if (!ArgE) in checkPreCall()
89 QualType T = ArgE->getType(); in checkPreCall()
104 if (const CompoundLiteralExpr *CE = dyn_cast<CompoundLiteralExpr>(ArgE)) in checkPreCall()
107 ArgE = dyn_cast<Expr>(*(IE->begin())); in checkPreCall()
126 R = genReportNullAttrNonNull(errorNode, ArgE); in checkPreCall()
128 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
153 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportNullAttrNonNull()
165 if (ArgE) in genReportNullAttrNonNull()
166 bugreporter::trackNullOrUndefValue(ErrorNode, ArgE, *R); in genReportNullAttrNonNull()
172 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportReferenceToNullPointer()
179 if (ArgE) { in genReportReferenceToNullPointer()
180 const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE); in genReportReferenceToNullPointer()
182 ArgEDeref = ArgE; in genReportReferenceToNullPointer()