Searched refs:KeyframeValue (Results 1 – 3 of 3) sorted by relevance
40 class KeyframeValue {42 KeyframeValue(double key, PassRefPtr<RenderStyle> style) in KeyframeValue() function69 insert(KeyframeValue(0, nullptr)); in KeyframeList()70 insert(KeyframeValue(1, nullptr)); in KeyframeList()76 void insert(const KeyframeValue& keyframe);86 const KeyframeValue& operator[](size_t index) const { return m_keyframes[index]; }90 Vector<KeyframeValue> m_keyframes; // Kept sorted by key.
42 void KeyframeList::insert(const KeyframeValue& keyframe) in insert()70 …for (Vector<KeyframeValue>::const_iterator it = m_keyframes.begin(); it != m_keyframes.end(); ++it… in insert()71 const KeyframeValue& currKeyframe = *it; in insert()
61 class KeyframeValue; variable