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

  /external/webkit/WebCore/platform/animation/
AnimationList.h 43 size_t size() const { return m_animations.size(); }
44 bool isEmpty() const { return m_animations.isEmpty(); }
46 void resize(size_t n) { m_animations.resize(n); }
47 void remove(size_t i) { m_animations.remove(i); }
48 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); }
50 Animation* animation(size_t i) { return m_animations[i].get(); }
51 const Animation* animation(size_t i) const { return m_animations[i].get(); }
54 Vector<RefPtr<Animation> > m_animations; member in class:WebCore::AnimationList
  /external/webkit/WebCore/rendering/style/
StyleRareNonInheritedData.h 109 OwnPtr<AnimationList> m_animations; member in class:WebCore::StyleRareNonInheritedData
  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.h 208 KeyframesMap m_animations; member in class:WebCore::LayerAndroid
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 197 QList<QWeakPointer<QAbstractAnimation> > m_animations; member in class:WebCore::GraphicsLayerQtImpl
263 for (QList<QWeakPointer<QAbstractAnimation> >::iterator it = m_animations.begin(); it != m_animations.end(); ++it)
    [all...]

Completed in 215 milliseconds