HomeSort by relevance Sort by last modified time
    Searched refs:m_animations (Results 1 - 8 of 8) 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.cpp 49 , m_animations(0)
85 , m_animations(o.m_animations ? new AnimationList(*o.m_animations) : 0)
193 if ((!m_animations && o.m_animations) || (m_animations && !o.m_animations))
195 if (m_animations && o.m_animations && (*m_animations != *o.m_animations)
    [all...]
StyleRareNonInheritedData.h 109 OwnPtr<AnimationList> m_animations; member in class:WebCore::StyleRareNonInheritedData
RenderStyle.cpp 824 AnimationList* animationList = rareNonInheritedData->m_animations.get();
    [all...]
RenderStyle.h     [all...]
  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.cpp 96 KeyframesMap::const_iterator end = layer.m_animations.end();
97 for (KeyframesMap::const_iterator it = layer.m_animations.begin(); it != end; ++it)
98 m_animations.add((it->second)->name(), (it->second)->copy());
124 m_animations.clear();
143 return !!m_animations.size();
153 KeyframesMap::const_iterator end = m_animations.end();
154 for (KeyframesMap::const_iterator it = m_animations.begin(); it != end; ++it) {
167 m_animations.add(anim->name(), anim);
172 m_animations.remove(name);
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 312 milliseconds