Home | History | Annotate | Download | only in css

Lines Matching defs:rightValue

368                             double rightValue = rightSide->doubleValue() * CSSPrimitiveValue::conversionToCanonicalUnitsScaleFactor(rightType);
369 return CSSCalcPrimitiveValue::create(evaluateOperator(leftValue, rightValue, op), canonicalType, isInteger);
438 const double rightValue = m_rightSide->computeLengthPx(conversionData);
439 return evaluate(leftValue, rightValue);
559 static double evaluateOperator(double leftValue, double rightValue, CalcOperator op)
563 return leftValue + rightValue;
565 return leftValue - rightValue;
567 return leftValue * rightValue;
569 if (rightValue)
570 return leftValue / rightValue;