Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Ex

104 LookThroughTransitiveAssignmentsAndCommaOperators(const Expr *Ex) {
105 while (Ex) {
107 dyn_cast<BinaryOperator>(Ex->IgnoreParenCasts());
111 Ex = BO->getRHS();
115 Ex = BO->getRHS();
120 return Ex;
206 void CheckVarDecl(const VarDecl *VD, const Expr *Ex, const Expr *Val,
221 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
305 const Expr *Ex = U->getSubExpr()->IgnoreParenCasts();
307 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex))