Searched refs:CalcExpressionBlendLength (Results 1 – 4 of 4) sorted by relevance
214 class PLATFORM_EXPORT CalcExpressionBlendLength : public CalcExpressionNode {216 CalcExpressionBlendLength(Length from, Length to, float progress) in CalcExpressionBlendLength() function224 bool operator==(const CalcExpressionBlendLength& o) const231 return type() == o.type() && *this == static_cast<const CalcExpressionBlendLength&>(o);249 inline const CalcExpressionBlendLength* toCalcExpressionBlendLength(const CalcExpressionNode* value) in toCalcExpressionBlendLength()252 return static_cast<const CalcExpressionBlendLength*>(value); in toCalcExpressionBlendLength()
180 …return Length(CalculationValue::create(adoptPtr(new CalcExpressionBlendLength(from, *this, progres… in blendMixedTypes()
104 …adoptPtr(new CalcExpressionBlendLength(Length(50, WebCore::Fixed), Length(60, WebCore::Fixed), 0.7… in TEST()
723 const CalcExpressionBlendLength* blendNode = toCalcExpressionBlendLength(node); in createExpressionNode()