Home
last modified time | relevance | path

Searched refs:StoreE (Results 1 – 3 of 3) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DUndefinedAssignmentChecker.cpp36 const Stmt *StoreE, in checkBind() argument
62 while (StoreE) { in checkBind()
63 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(StoreE)) { in checkBind()
78 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) { in checkBind()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h506 void evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, ExplodedNode *Pred,
542 void evalStore(ExplodedNodeSet &Dst, const Expr *AssignE, const Expr *StoreE,
/external/clang/lib/StaticAnalyzer/Core/
DExprEngine.cpp2228 void ExprEngine::evalBind(ExplodedNodeSet &Dst, const Stmt *StoreE, in evalBind() argument
2234 PostStmt PS(StoreE, LC); in evalBind()
2241 StoreE, *this, *PP); in evalBind()
2248 const ProgramPoint L = PostStore(StoreE, LC, /*Loc*/nullptr, in evalBind()
2275 const ProgramPoint L = PostStore(StoreE, LC, LocReg, nullptr); in evalBind()
2295 const Expr *StoreE = AssignE ? AssignE : LocationE; in evalStore() local
2308 evalBind(Dst, StoreE, *NI, location, Val, false); in evalStore()