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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStack.h 46 void add(Animation* animation) { m_activeAnimations.append(animation); }
49 size_t position = m_activeAnimations.find(animation);
51 m_activeAnimations.remove(position);
53 bool isEmpty() const { return m_activeAnimations.isEmpty(); }
55 const Vector<Animation*>& activeAnimations(const Element* element) const { return m_activeAnimations; }
58 Vector<Animation*> m_activeAnimations;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h 132 ActiveAnimations* activeAnimations() { return m_activeAnimations.get(); }
135 m_activeAnimations = activeAnimations;
182 OwnPtr<ActiveAnimations> m_activeAnimations;

Completed in 38 milliseconds