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

  /external/chromium_org/webkit/renderer/compositor_bindings/
web_float_animation_curve_impl.cc 17 : curve_(cc::KeyframedFloatAnimationCurve::Create()) {}
32 curve_->AddKeyframe(cc::FloatKeyframe::Create(
41 curve_->AddKeyframe(cc::FloatKeyframe::Create(
49 return curve_->GetValue(time);
54 return curve_->Clone();
web_transform_animation_curve_impl.cc 18 : curve_(cc::KeyframedTransformAnimationCurve::Create()) {}
36 curve_->AddKeyframe(cc::TransformKeyframe::Create(
48 curve_->AddKeyframe(cc::TransformKeyframe::Create(
57 return curve_->Clone();
web_float_animation_curve_impl.h 44 scoped_ptr<cc::KeyframedFloatAnimationCurve> curve_; member in class:webkit::WebFloatAnimationCurveImpl
web_transform_animation_curve_impl.h 43 scoped_ptr<cc::KeyframedTransformAnimationCurve> curve_; member in class:webkit::WebTransformAnimationCurveImpl
  /external/chromium_org/cc/animation/
animation.cc 60 : curve_(curve.Pass()),
154 iterations_ * curve_->Duration() <= (monotonic_time -
179 if (curve_->Duration() <= 0)
183 if (trimmed < curve_->Duration())
187 if (iterations_ >= 0 && trimmed >= curve_->Duration() * iterations_) {
190 return curve_->Duration();
194 int iteration = static_cast<int>(trimmed / curve_->Duration());
196 // Calculate x where trimmed = x + n * curve_->Duration() for some positive
198 trimmed = fmod(trimmed, curve_->Duration());
202 return curve_->Duration() - trimmed
    [all...]
animation.h 97 AnimationCurve* curve() { return curve_.get(); }
98 const AnimationCurve* curve() const { return curve_.get(); }
145 scoped_ptr<AnimationCurve> curve_; member in class:cc::Animation

Completed in 718 milliseconds