Home | History | Annotate | Download | only in Checkers

Lines Matching defs:Ex

36     const Expr *FindExpr(const Expr *Ex) {
37 if (!MatchesCriteria(Ex))
40 for (Stmt::const_child_iterator I = Ex->child_begin(),
41 E = Ex->child_end();I!=E;++I)
47 return Ex;
50 bool MatchesCriteria(const Expr *Ex) {
51 return St->getSVal(Ex, LCtx).isUndef();
88 const Expr *Ex = cast<Expr>(Condition);
94 if (PS->getStmt() == Ex)
98 Ex = FindIt.FindExpr(Ex);
102 R->addVisitor(bugreporter::getTrackNullOrUndefValueVisitor(N, Ex, R));
103 R->addRange(Ex->getSourceRange());