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

/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp650 VisitOffsetOfExpr(const OffsetOfExpr *OOE, argument
654 if (OOE->EvaluateAsInt(IV, getContext())) {
655 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType()));
656 assert(OOE->getType()->isIntegerType());
657 assert(IV.isSigned() == OOE->getType()->isSignedIntegerOrEnumerationType());
659 B.generateNode(OOE, Pred,
660 Pred->getState()->BindExpr(OOE, Pred->getLocationContext(),
/external/clang/lib/AST/
H A DExprConstant.cpp5216 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) { argument
5218 unsigned n = OOE->getNumComponents();
5220 return Error(OOE);
5221 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
5223 OffsetOfExpr::OffsetOfNode ON = OOE->getComponent(i);
5226 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
5232 return Error(OOE);
5243 return Error(OOE);
5260 return Error(OOE);
5265 return Error(OOE);
[all...]

Completed in 743 milliseconds