Home
last modified time | relevance | path

Searched refs:ValueRangeNonNegative (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DBasicShapes.cpp78 result->setWidth(m_width.blend(o->width(), progress, ValueRangeNonNegative)); in blend()
79 result->setHeight(m_height.blend(o->height(), progress, ValueRangeNonNegative)); in blend()
80 …sult->setCornerRadiusX(m_cornerRadiusX.blend(o->cornerRadiusX(), progress, ValueRangeNonNegative)); in blend()
81 …sult->setCornerRadiusY(m_cornerRadiusY.blend(o->cornerRadiusY(), progress, ValueRangeNonNegative)); in blend()
108 result->setRadius(m_radius.blend(o->radius(), progress, ValueRangeNonNegative)); in blend()
135 result->setRadiusX(m_radiusX.blend(o->radiusX(), progress, ValueRangeNonNegative)); in blend()
136 result->setRadiusY(m_radiusY.blend(o->radiusY(), progress, ValueRangeNonNegative)); in blend()
206 result->setTop(m_top.blend(o->top(), progress, ValueRangeNonNegative)); in blend()
207 result->setRight(m_right.blend(o->right(), progress, ValueRangeNonNegative)); in blend()
208 result->setBottom(m_bottom.blend(o->bottom(), progress, ValueRangeNonNegative)); in blend()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSCalculationValue.h106 …create(m_expression->toCalcValue(conversionData), m_nonNegative ? ValueRangeNonNegative : ValueRan… in toCalcValue()
112 … ValueRange permittedValueRange() { return m_nonNegative ? ValueRangeNonNegative : ValueRangeAll; } in permittedValueRange()
125 , m_nonNegative(range == ValueRangeNonNegative) in CSSCalcValue()
DCSSParser-in.cpp1384 if (!parseCalculation(value, mustBeNonNegative ? ValueRangeNonNegative : ValueRangeAll)) in validCalculationUnit()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterOperation.cpp123 …FilterOperation::create(m_stdDeviation.blend(Length(lengthType), progress, ValueRangeNonNegative)); in blend()
126 …erOperation::create(m_stdDeviation.blend(fromOp->m_stdDeviation, progress, ValueRangeNonNegative)); in blend()
/external/chromium_org/third_party/WebKit/Source/core/animation/
DAnimatableLength.cpp147 return primitiveValue->cssCalcValue()->permittedValueRange() == ValueRangeNonNegative; in isCompatibleWithRange()
155 …SSCalcValue::create(m_calcExpression, range == AllValues ? ValueRangeAll : ValueRangeNonNegative)); in toCSSPrimitiveValue()
DAnimatableLengthTest.cpp204 ValueRangeNonNegative)), in TEST_F()
212 ValueRangeNonNegative)), in TEST_F()
/external/chromium_org/third_party/WebKit/Source/platform/
DLength.h50 ValueRangeNonNegative enumerator
268 if (range == ValueRangeNonNegative) in blend()
DCalculationValue.h95 , m_isNonNegative(range == ValueRangeNonNegative) in CalculationValue()
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
DCSSPropertyAnimation.cpp365 (dst->*PropertyWrapper<Length>::m_setter)(to.blend(from, progress, ValueRangeNonNegative)); in blend()