Lines Matching refs:ArgE
43 genReportNullAttrNonNull(const ExplodedNode *ErrorN, const Expr *ArgE,
47 const Expr *ArgE) const;
134 const Expr *ArgE = Call.getArgExpr(idx); in checkPreCall() local
146 if (!ArgE) in checkPreCall()
149 QualType T = ArgE->getType(); in checkPreCall()
169 if (const auto *CE = dyn_cast<CompoundLiteralExpr>(ArgE)) in checkPreCall()
171 ArgE = dyn_cast<Expr>(*(IE->begin())); in checkPreCall()
185 R = genReportNullAttrNonNull(errorNode, ArgE, idx + 1); in checkPreCall()
187 R = genReportReferenceToNullPointer(errorNode, ArgE); in checkPreCall()
280 const Expr *ArgE, in genReportNullAttrNonNull() argument
290 if (ArgE) in genReportNullAttrNonNull()
291 bugreporter::trackExpressionValue(ErrorNode, ArgE, *R); in genReportNullAttrNonNull()
298 const ExplodedNode *ErrorNode, const Expr *ArgE) const { in genReportReferenceToNullPointer()
301 if (ArgE) { in genReportReferenceToNullPointer()
302 const Expr *ArgEDeref = bugreporter::getDerefExpr(ArgE); in genReportReferenceToNullPointer()
304 ArgEDeref = ArgE; in genReportReferenceToNullPointer()