Home
last modified time | relevance | path

Searched refs:CalcExpressionBlendLength (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
DCalculationValue.h214 class PLATFORM_EXPORT CalcExpressionBlendLength : public CalcExpressionNode {
216 CalcExpressionBlendLength(Length from, Length to, float progress) in CalcExpressionBlendLength() function
224 bool operator==(const CalcExpressionBlendLength& o) const
231 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()
DLength.cpp180 …return Length(CalculationValue::create(adoptPtr(new CalcExpressionBlendLength(from, *this, progres… in blendMixedTypes()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSCalculationValueTest.cpp104 …adoptPtr(new CalcExpressionBlendLength(Length(50, WebCore::Fixed), Length(60, WebCore::Fixed), 0.7… in TEST()
DCSSCalculationValue.cpp723 const CalcExpressionBlendLength* blendNode = toCalcExpressionBlendLength(node); in createExpressionNode()