Searched refs:inheritedTime (Results 1 - 7 of 7) sorted by path

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimation.h95 virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
H A DAnimationNode.cpp99 void AnimationNode::updateInheritedTime(double inheritedTime, TimingUpdateReason reason) const argument
101 bool needsUpdate = m_needsUpdate || (m_lastUpdateTime != inheritedTime && !(isNull(m_lastUpdateTime) && isNull(inheritedTime)));
103 m_lastUpdateTime = inheritedTime;
105 const double localTime = inheritedTime - m_startTime;
H A DAnimationNode.h127 void updateInheritedTime(double inheritedTime, TimingUpdateReason) const;
H A DAnimationPlayer.cpp639 double inheritedTime = m_idle || isNull(m_timeline->currentTimeInternal()) ? nullValue() : currentTimeInternal(); local
641 if (inheritedTime == 0 && m_playbackRate < 0)
642 inheritedTime = -1;
643 m_content->updateInheritedTime(inheritedTime, reason);
H A DInertAnimation.cpp49 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > InertAnimation::sample(double inheritedTime) argument
51 updateInheritedTime(inheritedTime, TimingUpdateOnDemand);
H A DInertAnimation.h43 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample(double inheritedTime);
51 virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.cpp375 double inheritedTime = isNull(oldStartTime) ? 0 : element->document().timeline().currentTimeInternal() - oldStartTime;
386 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample = inertAnimationForSampling->sample(inheritedTime);

Completed in 357 milliseconds