Home | History | Annotate | Download | only in AST

Lines Matching refs:LHSVal

4661   const APValue &LHSVal = LHSResult.Val;
4665 if (E->isAdditiveOp() && LHSVal.isLValue() && RHSVal.isInt()) {
4666 Result = LHSVal;
4678 RHSVal.isLValue() && LHSVal.isInt()) {
4681 LHSVal.getInt().getZExtValue());
4685 if (E->getOpcode() == BO_Sub && LHSVal.isLValue() && RHSVal.isLValue()) {
4687 if (!LHSVal.getLValueOffset().isZero() ||
4690 const Expr *LHSExpr = LHSVal.getLValueBase().dyn_cast<const Expr*>();
4707 if (!LHSVal.isInt() || !RHSVal.isInt())
4710 const APSInt &LHS = LHSVal.getInt();