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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
ActiveAnimations.h 80 void addAnimation(Animation* animation) { m_animations.append(animation); }
81 void notifyAnimationDestroyed(Animation* animation) { m_animations.remove(m_animations.find(animation)); }
97 Vector<Animation*> m_animations; member in class:blink::ActiveAnimations
ActiveAnimations.cpp 41 for (size_t i = 0; i < m_animations.size(); ++i)
42 m_animations[i]->notifyElementDestroyed();
43 m_animations.clear();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareNonInheritedData.cpp 125 , m_animations(o.m_animations ? CSSAnimationData::create(*o.m_animations) : nullptr)
302 if (!m_animations && !o.m_animations)
304 if (!m_animations || !o.m_animations)
306 return m_animations->animationsMatchForStyleRecalc(*o.m_animations);
StyleRareNonInheritedData.h 124 OwnPtrWillBePersistent<CSSAnimationData> m_animations; member in class:blink::StyleRareNonInheritedData
RenderStyle.cpp     [all...]
RenderStyle.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 250 for (AnimationMap::const_iterator iter = cssAnimations->m_animations.begin(); iter != cssAnimations->m_animations.end(); ++iter)
265 AnimationMap::const_iterator existing(cssAnimations->m_animations.find(animationName));
266 if (existing != cssAnimations->m_animations.end()) {
292 update->cancelAnimation(*iter, *cssAnimations->m_animations.get(*iter));
313 RefPtrWillBeRawPtr<AnimationPlayer> player = m_animations.take(*iter);
319 AnimationPlayer* player = m_animations.get(*iter);
337 m_animations.set(iter->name, player.get());
526 for (AnimationMap::iterator iter = m_animations.begin(); iter != m_animations.end(); ++iter)
    [all...]
CSSAnimations.h 182 bool isEmpty() const { return m_animations.isEmpty() && m_transitions.isEmpty() && !m_pendingUpdate; }
204 AnimationMap m_animations; member in class:blink::FINAL

Completed in 178 milliseconds