Searched refs:KeyframeValue (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/rendering/style/
H A DKeyframeList.h38 class KeyframeValue { class in namespace:WebCore
40 KeyframeValue(float key, PassRefPtr<RenderStyle> style) function in class:WebCore::KeyframeValue
68 insert(KeyframeValue(0, 0));
69 insert(KeyframeValue(1, 0));
78 void insert(const KeyframeValue& keyframe);
88 const KeyframeValue& operator[](size_t index) const { return m_keyframes[index]; }
92 Vector<KeyframeValue> m_keyframes; // kept sorted by key
H A DKeyframeList.cpp44 Vector<KeyframeValue>::const_iterator it2 = o.m_keyframes.begin();
45 for (Vector<KeyframeValue>::const_iterator it1 = m_keyframes.begin(); it1 != m_keyframes.end(); ++it1) {
58 void KeyframeList::insert(const KeyframeValue& keyframe)
86 for (Vector<KeyframeValue>::const_iterator it = m_keyframes.begin(); it != m_keyframes.end(); ++it) {
87 const KeyframeValue& currKeyframe = *it;
/external/webkit/Source/WebCore/page/animation/
H A DKeyframeAnimation.cpp107 const KeyframeValue& currKeyFrame = m_keyframes[i];
129 const KeyframeValue& prevKeyframe = m_keyframes[prevIndex];
130 const KeyframeValue& nextKeyframe = m_keyframes[nextIndex];
398 const KeyframeValue& currentKeyframe = m_keyframes[i];
412 const KeyframeValue& currentKeyframe = m_keyframes[i];
/external/webkit/Source/WebCore/css/
H A DCSSStyleSelector.h60 class KeyframeValue;
133 PassRefPtr<RenderStyle> styleForKeyframe(const RenderStyle*, const WebKitCSSKeyframeRule*, KeyframeValue&);
H A DCSSStyleSelector.cpp1506 PassRefPtr<RenderStyle> CSSStyleSelector::styleForKeyframe(const RenderStyle* elementStyle, const WebKitCSSKeyframeRule* keyframeRule, KeyframeValue& keyframe)
1581 KeyframeValue keyframe(0, 0);
1598 KeyframeValue keyframe(0, 0);
1607 KeyframeValue keyframe(1, 0);
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp1288 const KeyframeValue& currentKeyframe = keyframes[i];

Completed in 197 milliseconds