Searched refs:OOE (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DAnalysisOrderChecker.cpp98 void checkPreStmt(const OffsetOfExpr *OOE, CheckerContext &C) const { argument
103 void checkPostStmt(const OffsetOfExpr *OOE, CheckerContext &C) const { argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp846 VisitOffsetOfExpr(const OffsetOfExpr *OOE, argument
850 if (OOE->EvaluateAsInt(Result, getContext())) {
852 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType()));
853 assert(OOE->getType()->castAs<BuiltinType>()->isInteger());
854 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType());
856 B.generateNode(OOE, Pred,
857 Pred->getState()->BindExpr(OOE, Pred->getLocationContext(),
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12237 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
12239 unsigned n = OOE->getNumComponents();
12241 return Error(OOE);
12242 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
12244 OffsetOfNode ON = OOE->getComponent(i);
12247 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
12253 return Error(OOE);
12264 return Error(OOE);
12281 return Error(OOE);
12286 return Error(OOE);
[all...]

Completed in 361 milliseconds