Lines Matching refs:ArgE
40 const Expr *ArgE) const;
42 const Expr *ArgE) const;
94 const Expr *ArgE = Call.getArgExpr(idx); in checkPreCall() local
106 if (!ArgE) in checkPreCall()
109 QualType T = ArgE->getType(); in checkPreCall()
126 if (const CompoundLiteralExpr *CE = dyn_cast<CompoundLiteralExpr>(ArgE)) in checkPreCall()
129 ArgE = dyn_cast<Expr>(*(IE->begin())); in checkPreCall()
148 R = genReportNullAttrNonNull(errorNode, ArgE); in checkPreCall()
150 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
175 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportNullAttrNonNull()
186 if (ArgE) in genReportNullAttrNonNull()
187 bugreporter::trackNullOrUndefValue(ErrorNode, ArgE, *R); in genReportNullAttrNonNull()
193 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportReferenceToNullPointer()
200 if (ArgE) { in genReportReferenceToNullPointer()
201 const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE); in genReportReferenceToNullPointer()
203 ArgEDeref = ArgE; in genReportReferenceToNullPointer()