OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:animatedValue
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedTypeAnimator.cpp
177
RefPtr<SVGPropertyBase>
animatedValue
= m_animatedProperty->createAnimatedValue();
178
ASSERT(
animatedValue
->type() == m_type);
179
setAnimatedValueOnAllTargetProperties(list, m_animatedProperty->attributeName(),
animatedValue
);
181
return
animatedValue
.release();
237
RefPtr<SVGPropertyBase>
animatedValue
= animated;
244
animatedValue
->calculateAnimatedValue(m_animationElement, percentage, repeatCount, fromValue, toValue, toAtEndOfDurationValue, m_contextElement);
SVGAngle.cpp
426
float
animatedValue
= value();
427
animationElement->animateAdditiveNumber(percentage, repeatCount, fromAngle->value(), toAngle->value(), toAtEndOfDurationAngle->value(),
animatedValue
);
429
setValue(
animatedValue
);
/cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java
186
Float
animatedValue
= (Float) valueAnimatorLocal.getAnimatedValue();
187
assertTrue(
animatedValue
>= start);
188
assertTrue(
animatedValue
<= end);
210
Integer
animatedValue
= (Integer) valueAnimatorLocal.getAnimatedValue();
211
assertTrue(
animatedValue
>= start);
212
assertTrue(
animatedValue
<= end);
PropertyValuesHolderTest.java
248
Integer
animatedValue
= (Integer) objAnimator.getAnimatedValue();
249
assertTrue(
animatedValue
>= start);
250
assertTrue(
animatedValue
<= end);
Completed in 1203 milliseconds