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

  /external/webkit/Source/WebCore/page/
WebKitAnimationList.cpp 46 return m_animations.size();
51 if (index < m_animations.size())
52 return m_animations[index].get();
58 if (index >= m_animations.size())
61 m_animations.remove(index);
66 m_animations.append(animation);
74 if (index > m_animations.size())
77 m_animations.insert(index, animation);
WebKitAnimationList.h 56 Vector<RefPtr<WebKitAnimation> > m_animations; member in class:WebCore::WebKitAnimationList
  /external/webkit/Source/WebCore/platform/animation/
AnimationList.h 47 size_t size() const { return m_animations.size(); }
48 bool isEmpty() const { return m_animations.isEmpty(); }
50 void resize(size_t n) { m_animations.resize(n); }
51 void remove(size_t i) { m_animations.remove(i); }
52 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); }
54 Animation* animation(size_t i) { return m_animations[i].get(); }
55 const Animation* animation(size_t i) const { return m_animations[i].get(); }
60 Vector<RefPtr<Animation> > m_animations; member in class:WebCore::AnimationList
AnimationList.cpp 37 m_animations.append(Animation::create(o.animation(i)));
  /external/webkit/Source/WebCore/rendering/style/
StyleRareNonInheritedData.cpp 53 , m_animations(0)
91 , m_animations(o.m_animations ? new AnimationList(*o.m_animations) : 0)
188 if ((!m_animations && o.m_animations) || (m_animations && !o.m_animations))
190 if (m_animations && o.m_animations && (*m_animations != *o.m_animations)
    [all...]
StyleRareNonInheritedData.h 118 OwnPtr<AnimationList> m_animations; member in class:WebCore::StyleRareNonInheritedData
RenderStyle.cpp     [all...]
RenderStyle.h     [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
LayerAndroid.cpp 174 KeyframesMap::const_iterator end = layer.m_animations.end();
175 for (KeyframesMap::const_iterator it = layer.m_animations.begin(); it != end; ++it) {
176 m_animations.add(it->first, it->second);
204 m_animations.clear();
234 return !!m_animations.size();
247 KeyframesMap::const_iterator end = m_animations.end();
248 for (KeyframesMap::const_iterator it = m_animations.begin(); it != end; ++it) {
263 KeyframesMap::const_iterator localBegin = m_animations.begin();
264 KeyframesMap::const_iterator localEnd = m_animations.end();
302 m_animations.add(key, anim)
    [all...]
LayerAndroid.h 278 || m_animations.size()
312 return contentIsScrollable() || isPositionFixed() || (m_animations.size() != 0);
349 KeyframesMap m_animations; member in class:WebCore::LayerAndroid
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 275 QList<QWeakPointer<QAbstractAnimation> > m_animations; member in class:WebCore::GraphicsLayerQtImpl
369 for (it = m_animations.begin(); it != m_animations.end(); ++it)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCALayer.h 205 HashMap<String, RefPtr<PlatformCAAnimation> > m_animations; member in class:WebCore::PlatformCALayer
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCALayerWin.cpp 266 m_animations.add(key, animation);
281 m_animations.remove(key);
295 HashMap<String, RefPtr<PlatformCAAnimation> >::iterator it = m_animations.find(key);
296 if (it == m_animations.end())

Completed in 209 milliseconds