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

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPropertyTearOff.h 37 if (m_baseVal) {
38 ASSERT(m_baseVal->animatedProperty() == this);
39 m_baseVal->setAnimatedProperty(0);
49 if (!m_baseVal)
50 m_baseVal = PropertyTearOff::create(this, BaseValRole, m_property);
51 return m_baseVal.get();
118 RefPtr<PropertyTearOff> m_baseVal;
SVGAnimatedListPropertyTearOff.h 44 if (m_baseVal)
45 static_cast<ListPropertyTearOff*>(m_baseVal.get())->clearAnimatedProperty();
52 if (!m_baseVal)
53 m_baseVal = ListPropertyTearOff::create(this, BaseValRole, m_values, m_wrappers);
54 return static_cast<ListProperty*>(m_baseVal.get());
71 return static_cast<ListPropertyTearOff*>(m_baseVal.get())->findItem(static_cast<ListItemTearOff*>(property));
78 static_cast<ListPropertyTearOff*>(m_baseVal.get())->removeItemFromList(itemIndex, shouldSynchronizeWrappers);
185 RefPtr<SVGProperty> m_baseVal;

Completed in 31 milliseconds