HomeSort by relevance Sort by last modified time
    Searched defs:activeInterpolations (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
InterpolationEffectTest.cpp 37 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > activeInterpolations = interpolationEffect->getActiveInterpolations(-2, duration);
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->size())
    [all...]
AnimationStack.cpp 93 WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> > AnimationStack::activeInterpolations(AnimationStack* animationStack, const WillBeHeapVector<RawPtrWillBeMember<InertAnimation> >* newAnimations, const WillBeHeapHashSet<RawPtrWillBeMember<const AnimationPlayer> >* cancelledAnimationPlayers, Animation::Priority priority, double timelineCurrentTime)

Completed in 68 milliseconds