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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
AnimationTranslationUtil.cpp 137 bool appendKeyframeWithStandardTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, WebKit::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize&)
139 curve->add(Keyframe(keyTime, value->value()), timingFunctionType);
144 bool appendKeyframeWithCustomBezierTimingFunction(Curve* curve, double keyTime, const Value* value, const Value* lastValue, double x1, double y1, double x2, double y2, const FloatSize&)
146 curve->add(Keyframe(keyTime, value->value()), x1, y1, x2, y2);
160 bool appendKeyframeWithStandardTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, WebKit::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize)
173 curve->add(WebTransformKeyframe(keyTime, operations.leakPtr()), timingFunctionType);
180 bool appendKeyframeWithCustomBezierTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, double x1, double y1, double x2, double y2, const FloatSize& boxSize)
193 curve->add(WebTransformKeyframe(keyTime, operations.leakPtr()), x1, y1, x2, y2);
255 double keyTime = originalValue->keyTime() * duration
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsLayer.h 74 explicit AnimationValue(float keyTime, PassRefPtr<TimingFunction> timingFunction = 0)
75 : m_keyTime(keyTime)
82 float keyTime() const { return m_keyTime; }
95 FloatAnimationValue(float keyTime, float value, PassRefPtr<TimingFunction> timingFunction = 0)
96 : AnimationValue(keyTime, timingFunction)
112 explicit TransformAnimationValue(float keyTime, const TransformOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = 0)
113 : AnimationValue(keyTime, timingFunction)
130 explicit FilterAnimationValue(float keyTime, const FilterOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = 0)
131 : AnimationValue(keyTime, timingFunction)
179 // Insert, sorted by keyTime
    [all...]
GraphicsLayer.cpp 86 if (curValue->keyTime() == value->keyTime()) {
92 if (curValue->keyTime() > value->keyTime()) {
    [all...]
  /development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java 780 long keyTime = inputContext == null ? 0 : ((GameEvent)inputContext).eventTime;
782 // Log.d(TAG,"keyTime delta = " +
783 // (System.currentTimeMillis()-keyTime) + ": obj = " +
803 if (!mLaserOn && System.currentTimeMillis() - keyTime <= 400) {
806 mLaserFireTime = keyTime;
    [all...]

Completed in 181 milliseconds