Home | History | Annotate | Download | only in AST

Lines Matching refs:RHSValue

3479     APValue RHSValue;
3481 RHS, RHSValue))
3484 RHSValue))
6482 LValue LHSValue, RHSValue;
6488 if (!EvaluatePointer(E->getRHS(), RHSValue, Info) || !LHSOK)
6493 if (!HasSameBase(LHSValue, RHSValue)) {
6496 if (!LHSValue.Offset.isZero() || !RHSValue.Offset.isZero())
6499 const Expr *RHSExpr = RHSValue.Base.dyn_cast<const Expr*>();
6521 (!RHSValue.Base && !RHSValue.Offset.isZero()))
6527 if ((IsLiteralLValue(LHSValue) || IsLiteralLValue(RHSValue)) &&
6528 LHSValue.Base && RHSValue.Base)
6532 if (IsWeakLValue(LHSValue) || IsWeakLValue(RHSValue))
6542 const CharUnits &RHSOffset = RHSValue.getLValueOffset();
6545 SubobjectDesignator &RHSDesignator = RHSValue.getLValueDesignator();
6678 MemberPtr LHSValue, RHSValue;
6684 if (!EvaluateMemberPointer(E->getRHS(), RHSValue, Info) || !LHSOK)
6690 if (!LHSValue.getDecl() || !RHSValue.getDecl()) {
6691 bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
6700 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(RHSValue.getDecl()))
6708 bool Equal = LHSValue == RHSValue;