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

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DAnalysisOrderChecker.cpp115 void checkPreStmt(const OffsetOfExpr *OOE, CheckerContext &C) const { argument
120 void checkPostStmt(const OffsetOfExpr *OOE, CheckerContext &C) const { argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp858 VisitOffsetOfExpr(const OffsetOfExpr *OOE, argument
862 if (OOE->EvaluateAsInt(Result, getContext())) {
864 assert(IV.getBitWidth() == getContext().getTypeSize(OOE->getType()));
865 assert(OOE->getType()->castAs<BuiltinType>()->isInteger());
866 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType());
868 B.generateNode(OOE, Pred,
869 Pred->getState()->BindExpr(OOE, Pred->getLocationContext(),
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12578 bool IntExprEvaluator::VisitOffsetOfExpr(const OffsetOfExpr *OOE) {
12580 unsigned n = OOE->getNumComponents();
12582 return Error(OOE);
12583 QualType CurrentType = OOE->getTypeSourceInfo()->getType();
12585 OffsetOfNode ON = OOE->getComponent(i);
12588 const Expr *Idx = OOE->getIndexExpr(ON.getArrayExprIndex());
12594 return Error(OOE);
12605 return Error(OOE);
12622 return Error(OOE);
12627 return Error(OOE);
[all...]

Completed in 94 milliseconds