Home | History | Annotate | Download | only in Checkers

Lines Matching refs:Ex

103 LookThroughTransitiveAssignmentsAndCommaOperators(const Expr *Ex) {
104 while (Ex) {
106 dyn_cast<BinaryOperator>(Ex->IgnoreParenCasts());
110 Ex = BO->getRHS();
114 Ex = BO->getRHS();
119 return Ex;
208 void CheckVarDecl(const VarDecl *VD, const Expr *Ex, const Expr *Val,
224 PathDiagnosticLocation::createBegin(Ex, BR.getSourceManager(), AC);
308 const Expr *Ex = U->getSubExpr()->IgnoreParenCasts();
310 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Ex))