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

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPropertyTearOff.h 41 if (m_animVal) {
42 ASSERT(m_animVal->animatedProperty() == this);
43 m_animVal->setAnimatedProperty(0);
56 if (!m_animVal)
57 m_animVal = PropertyTearOff::create(this, AnimValRole, m_property);
58 return m_animVal.get();
70 ASSERT(m_animVal);
71 return m_animVal->propertyReference();
90 ASSERT(m_animVal);
91 m_animVal->setValue(m_property)
    [all...]
SVGAnimatedListPropertyTearOff.h 46 if (m_animVal)
47 static_cast<ListPropertyTearOff*>(m_animVal.get())->clearAnimatedProperty();
59 if (!m_animVal)
60 m_animVal = ListPropertyTearOff::create(this, AnimValRole, m_values, m_wrappers);
61 return static_cast<ListProperty*>(m_animVal.get());
89 ASSERT(m_animVal);
90 return static_cast<ListProperty*>(m_animVal.get())->values();
119 ASSERT(m_animVal);
123 ListProperty* animVal = static_cast<ListProperty*>(m_animVal.get());
142 ListProperty* animVal = static_cast<ListProperty*>(m_animVal.get())
    [all...]

Completed in 38 milliseconds