Home
last modified time | relevance | path

Searched refs:KeyframeValue (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DKeyframeList.h40 class KeyframeValue {
42 KeyframeValue(double key, PassRefPtr<RenderStyle> style) in KeyframeValue() function
69 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.
DKeyframeList.cpp42 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()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolver.h61 class KeyframeValue; variable