Home
last modified time | relevance | path

Searched refs:keyTime (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/layers/
DAndroidAnimation.cpp213 float key = value->keyTime(); in pickValues()
239 fromValue, fromValue->keyTime(), in applyForProgress()
240 toValue, toValue->keyTime(), progress); in applyForProgress()
246 progress = applyTimingFunction(fromValue->keyTime(), toValue->keyTime(), in applyForProgress()
281 fromValue, fromValue->keyTime(), in applyForProgress()
282 toValue, toValue->keyTime(), progress); in applyForProgress()
288 float p = applyTimingFunction(fromValue->keyTime(), toValue->keyTime(), in applyForProgress()
290 ALOGV("progress %.2f => %.2f from: %.2f to: %.2f", progress, p, fromValue->keyTime(), in applyForProgress()
291 toValue->keyTime()); in applyForProgress()
/external/webkit/Source/WebCore/platform/graphics/
DGraphicsLayer.h105 AnimationValue(float keyTime, PassRefPtr<TimingFunction> timingFunction = 0)
106 : m_keyTime(keyTime) in m_keyTime() argument
114 float keyTime() const { return m_keyTime; } in keyTime() function
125 FloatAnimationValue(float keyTime, float value, PassRefPtr<TimingFunction> timingFunction = 0)
126 : AnimationValue(keyTime, timingFunction) in AnimationValue() argument
140 …TransformAnimationValue(float keyTime, const TransformOperations* value = 0, PassRefPtr<TimingFunc…
141 : AnimationValue(keyTime, timingFunction) in AnimationValue() argument
DGraphicsLayer.cpp48 if (curValue->keyTime() == value->keyTime()) { in insert()
54 if (curValue->keyTime() > value->keyTime()) { in insert()
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.cpp944 FloatAnimationValue* value = new FloatAnimationValue(originalValue->keyTime(), in createAnimationFromKeyframes()
986 TransformAnimationValue* value = new TransformAnimationValue(originalValue->keyTime(), in createTransformAnimationsFromKeyframes()
/external/webkit/Source/WebCore/platform/graphics/ca/
DGraphicsLayerCA.cpp1738 keyTimes.append(curValue->keyTime()); in setAnimationKeyframes()
1833 keyTimes.append(curValue->keyTime()); in setTransformAnimationKeyframes()
/external/webkit/Source/WebCore/platform/graphics/qt/
DGraphicsLayerQt.cpp1439 m_keyframeValues[animationValue->keyTime()] = keyframeValue; in AnimationQt()