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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.h 91 return m_keyframeGroups->contains(property);
133 return m_keyframeGroups->get(id)->keyframes();
148 mutable OwnPtr<KeyframeGroupMap> m_keyframeGroups;
KeyframeAnimationEffect.cpp 191 for (KeyframeGroupMap::const_iterator iter = m_keyframeGroups->begin(); iter != m_keyframeGroups->end(); ++iter)
223 if (m_keyframeGroups)
226 m_keyframeGroups = adoptPtr(new KeyframeGroupMap);
233 KeyframeGroupMap::iterator groupIter = m_keyframeGroups->find(property);
234 if (groupIter == m_keyframeGroups->end()) {
235 KeyframeGroupMap::AddResult result = m_keyframeGroups->add(property, adoptPtr(new PropertySpecificKeyframeGroup));
245 for (KeyframeGroupMap::iterator iter = m_keyframeGroups->begin(); iter != m_keyframeGroups->end(); ++iter) {

Completed in 25 milliseconds