Searched defs:activeInterpolations (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolationEffectTest.cpp37 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > activeInterpolations = interpolationEffect->getActiveInterpolations(-2, duration); local
38 EXPECT_EQ(0ul, activeInterpolations->size());
40 activeInterpolations = interpolationEffect->getActiveInterpolations(-0.5, duration);
41 EXPECT_EQ(1ul, activeInterpolations->size());
42 EXPECT_EQ(-5, getInterpolableNumber(activeInterpolations->at(0)));
44 activeInterpolations = interpolationEffect->getActiveInterpolations(0.5, duration);
45 EXPECT_EQ(1ul, activeInterpolations->size());
46 EXPECT_FLOAT_EQ(5, getInterpolableNumber(activeInterpolations->at(0)));
48 activeInterpolations = interpolationEffect->getActiveInterpolations(1.5, duration);
49 EXPECT_EQ(1ul, activeInterpolations
66 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > activeInterpolations = interpolationEffect->getActiveInterpolations(-0.5, duration); local
[all...]
H A DAnimationStack.cpp93 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > AnimationStack::activeInterpolations(AnimationStack* animationStack, const WillBeHeapVector<RawPtrWillBeMember<InertAnimation> >* newAnimations, const WillBeHeapHashSet<RawPtrWillBeMember<const AnimationPlayer> >* cancelledAnimationPlayers, Animation::Priority priority, double timelineCurrentTime) function in class:blink::AnimationStack
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.cpp1047 void StyleResolver::applyAnimatedProperties(StyleResolverState& state, const WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& activeInterpolations) argument
1049 for (WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >::const_iterator iter = activeInterpolations.begin(); iter != activeInterpolations.end(); ++iter) {

Completed in 108 milliseconds