/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/ |
D | AnimatableLengthTest.cpp | 26 EXPECT_EQ(Length(0, Fixed), create(Length(0, Fixed))->length(1, ValueRangeAll)); in TEST() 27 EXPECT_EQ(Length(0, Percent), create(Length(0, Percent))->length(1, ValueRangeAll)); in TEST() 28 EXPECT_EQ(Length(10, Fixed), create(Length(10, Fixed))->length(1, ValueRangeAll)); in TEST() 29 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent))->length(1, ValueRangeAll)); in TEST() 30 EXPECT_EQ(Length(-10, Fixed), create(Length(-10, Fixed))->length(1, ValueRangeAll)); in TEST() 31 EXPECT_EQ(Length(-10, Percent), create(Length(-10, Percent))->length(1, ValueRangeAll)); in TEST() 32 Length calc = Length(CalculationValue::create(PixelsAndPercent(5, 10), ValueRangeAll)); in TEST() 33 EXPECT_EQ(calc, create(calc)->length(1, ValueRangeAll)); in TEST() 48 EXPECT_EQ(Length(4, Fixed), create(Length(10, Fixed), 5)->length(2, ValueRangeAll)); in TEST() 49 EXPECT_EQ(Length(10, Percent), create(Length(10, Percent), 5)->length(2, ValueRangeAll)); in TEST() [all …]
|
D | AnimatableLength.cpp | 45 ASSERT(range == ValueRangeAll); in clampNumber()
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
D | TranslateTransformOperation.cpp | 34 …ation::create(zeroLength.blend(m_x, progress, ValueRangeAll), zeroLength.blend(m_y, progress, Valu… in blend() 40 …ormOperation::create(m_x.blend(fromX, progress, ValueRangeAll), m_y.blend(fromY, progress, ValueRa… in blend()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSCalculationValue.h | 106 …tr<CSSCalcValue> create(PassRefPtrWillBeRawPtr<CSSCalcExpressionNode>, ValueRange = ValueRangeAll); 116 … return CalculationValue::create(value, m_nonNegative ? ValueRangeNonNegative : ValueRangeAll); in toCalcValue() 122 … ValueRange permittedValueRange() { return m_nonNegative ? ValueRangeNonNegative : ValueRangeAll; } in permittedValueRange()
|
D | CSSCalculationValueTest.cpp | 130 RefPtr<CalculationValue> calc = CalculationValue::create(PixelsAndPercent(1, 2), ValueRangeAll); in TEST() 142 Length lengthD(CalculationValue::create(PixelsAndPercent(1, 2), ValueRangeAll)); in TEST() 149 RefPtr<CalculationValue> calc = CalculationValue::create(PixelsAndPercent(1, 2), ValueRangeAll); in TEST()
|
D | CSSPrimitiveValue.cpp | 362 calc.isNonNegative() ? ValueRangeNonNegative : ValueRangeAll)); in CSSPrimitiveValue()
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | LengthStyleInterpolationTest.cpp | 29 … return interpolableValueToLength(lengthToInterpolableValue(value.get()).get(), ValueRangeAll); in roundTrip() 115 …toCSSPrimitiveValue(interpolableValueToLength(list.get(), ValueRangeAll).get())->accumulateLengthA… in TEST_F()
|
D | StringKeyframe.cpp | 73 ValueRange range = ValueRangeAll; in createInterpolation()
|
D | KeyframeEffectModelTest.cpp | 83 actualValue = toAnimatableLength(value.get())->length(1, ValueRangeAll).value(); in expectDoubleValue()
|
D | CompositorAnimationsTest.cpp | 262 Length calcLength = Length(100, Percent).blend(Length(100, Fixed), 0.5, ValueRangeAll); in TEST_F()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | BasicShapes.cpp | 204 result->appendPoint(m_values.at(i).blend(o->values().at(i), progress, ValueRangeAll), in blend() 205 m_values.at(i + 1).blend(o->values().at(i + 1), progress, ValueRangeAll)); in blend()
|
D | BasicShapes.h | 107 …CenterCoordinate(TopLeft, m_computedLength.blend(other.m_computedLength, progress, ValueRangeAll)); in blend()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | AnimatedStyleBuilder.cpp | 67 …th(const AnimatableValue* value, const StyleResolverState& state, ValueRange range = ValueRangeAll) in animatableValueToLength() 93 …ox(const AnimatableValue* value, const StyleResolverState& state, ValueRange range = ValueRangeAll) in animatableValueToLengthBox() 113 …nt(const AnimatableValue* value, const StyleResolverState& state, ValueRange range = ValueRangeAll) in animatableValueToLengthPoint()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | Length.cpp | 211 return Length(CalculationValue::create(result, ValueRangeAll)); in subtractFromOneHundredPercent()
|
D | Length.h | 50 ValueRangeAll, enumerator
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | CSSPropertyParser.cpp | 192 if (!parseCalculation(value, mustBeNonNegative ? ValueRangeNonNegative : ValueRangeAll)) in validCalculationUnit()
|