HomeSort by relevance Sort by last modified time
    Searched refs:cssCalcValue (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
LengthStyleInterpolation.cpp 17 if (primitiveValue.cssCalcValue())
57 next = CSSCalcValue::createExpressionNode(previous, CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(subValue->value(), toUnitType(position))), CalcAdd);
59 next = CSSCalcValue::createExpressionNode(CSSPrimitiveValue::create(subValue->value(), toUnitType(position)));
95 return CSSPrimitiveValue::create(CSSCalcValue::create(constructCalcExpression(nullptr, listValue, 0), range));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.cpp 360 init(CSSCalcValue::create(
361 CSSCalcValue::createExpressionNode(calc.pixels() / zoom, calc.percent()),
419 void CSSPrimitiveValue::init(PassRefPtrWillBeRawPtr<CSSCalcValue> c)
535 ASSERT(isTime() || (isCalculated() && cssCalcValue()->category() == CalcTime));
536 UnitType currentType = isCalculated() ? cssCalcValue()->expressionNode()->primitiveType() : static_cast<UnitType>(m_primitiveUnitType);
547 ASSERT(isAngle() || (isCalculated() && cssCalcValue()->category() == CalcAngle));
548 UnitType currentType = isCalculated() ? cssCalcValue()->expressionNode()->primitiveType() : static_cast<UnitType>(m_primitiveUnitType);
689 cssCalcValue()->accumulateLengthArray(lengthArray, multiplier);
    [all...]
CSSPrimitiveValue.h 36 class CSSCalcValue;
322 CSSCalcValue* cssCalcValue() const { return m_primitiveUnitType != CSS_CALC ? 0 : m_value.calc; }
383 void init(PassRefPtrWillBeRawPtr<CSSCalcValue>);
397 CSSCalcValue* calc;
CSSGradientValue.cpp 193 length = stop.m_position->cssCalcValue()->toCalcValue(conversionData)->evaluate(gradientLength);
417 return origin + sign * value->cssCalcValue()->toCalcValue(conversionData)->evaluate(edgeDistance);
    [all...]
CSSPrimitiveValueMappings.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderConverter.cpp 146 return primitiveValue->cssCalcValue()->toCalcValue(conversionData)->evaluate(parentSize.value);
StyleBuilderCustom.cpp 315 Length zoomedLength = Length(primitiveValue->cssCalcValue()->toCalcValue(state.cssToLengthConversionData().copyWithAdjustedZoom(multiplier)));
    [all...]

Completed in 146 milliseconds