HomeSort by relevance Sort by last modified time
    Searched refs:inheritedTime (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
InertAnimation.h 43 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample(double inheritedTime);
51 virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
InertAnimation.cpp 49 PassOwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > InertAnimation::sample(double inheritedTime)
51 updateInheritedTime(inheritedTime, TimingUpdateOnDemand);
AnimationNode.cpp 99 void AnimationNode::updateInheritedTime(double inheritedTime, TimingUpdateReason reason) const
101 bool needsUpdate = m_needsUpdate || (m_lastUpdateTime != inheritedTime && !(isNull(m_lastUpdateTime) && isNull(inheritedTime)));
103 m_lastUpdateTime = inheritedTime;
105 const double localTime = inheritedTime - m_startTime;
Animation.h 95 virtual double calculateTimeToEffectChange(bool forwards, double inheritedTime, double timeToNextIteration) const OVERRIDE;
AnimationNode.h 127 void updateInheritedTime(double inheritedTime, TimingUpdateReason) const;
AnimationPlayer.cpp 639 double inheritedTime = m_idle || isNull(m_timeline->currentTimeInternal()) ? nullValue() : currentTimeInternal();
641 if (inheritedTime == 0 && m_playbackRate < 0)
642 inheritedTime = -1;
643 m_content->updateInheritedTime(inheritedTime, reason);
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 375 double inheritedTime = isNull(oldStartTime) ? 0 : element->document().timeline().currentTimeInternal() - oldStartTime;
386 OwnPtrWillBeRawPtr<WillBeHeapVector<RefPtrWillBeMember<Interpolation> > > sample = inertAnimationForSampling->sample(inheritedTime);
    [all...]

Completed in 764 milliseconds