Searched defs:CastE (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp36 const ObjCObjectPointerType *getBetterObjCType(const Expr *CastE,
41 void checkPostStmt(const ImplicitCastExpr *CastE, CheckerContext &C) const;
176 void DynamicTypePropagation::checkPostStmt(const ImplicitCastExpr *CastE, argument
179 const MemRegion *ToR = C.getSVal(CastE).getAsRegion();
183 switch (CastE->getCastKind()) {
188 if (const Type *NewTy = getBetterObjCType(CastE, C))
247 DynamicTypePropagation::getBetterObjCType(const Expr *CastE, argument
249 const MemRegion *ToR = C.getSVal(CastE).getAsRegion();
254 CastE->getType()->getAs<ObjCObjectPointerType>();
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp219 void ExprEngine::VisitCast(const CastExpr *CastE, const Expr *Ex, argument
223 getCheckerManager().runCheckersForPreStmt(dstPreStmt, Pred, CastE, *this);
225 if (CastE->getCastKind() == CK_LValueToRValue) {
231 evalLoad(Dst, CastE, CastE, subExprNode, state, state->getSVal(Ex, LCtx));
237 QualType T = CastE->getType();
240 if (const ExplicitCastExpr *ExCast=dyn_cast_or_null<ExplicitCastExpr>(CastE))
251 switch (CastE->getCastKind()) {
274 // Copy the SVal of Ex to CastE.
278 state = state->BindExpr(CastE, LCt
[all...]

Completed in 83 milliseconds