Searched refs:lengthList (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGAnimatedLengthList.cpp37 animatedType->lengthList().parse(string, m_lengthMode);
53 resetFromBaseValue<SVGAnimatedLengthList>(animatedTypes, type, &SVGAnimatedType::lengthList);
71 const SVGLengthList& fromLengthList = from->lengthList();
72 SVGLengthList& toLengthList = to->lengthList();
85 SVGLengthList lengthList; local
86 lengthList.parse(string, SVGLength::lengthModeForAnimatedLengthAttribute(animationElement->attributeName()));
87 return lengthList;
95 SVGLengthList fromLengthList = m_animationElement->animationMode() == ToAnimation ? animated->lengthList() : from->lengthList();
96 SVGLengthList toLengthList = to->lengthList();
[all...]
H A DSVGAnimatedType.cpp58 delete m_data.lengthList;
149 std::unique_ptr<SVGAnimatedType> SVGAnimatedType::createLengthList(std::unique_ptr<SVGLengthList> lengthList) argument
151 ASSERT(lengthList);
153 animatedType->m_data.lengthList = lengthList.release();
239 ASSERT(m_data.lengthList);
240 return m_data.lengthList->valueAsString();
287 ASSERT(m_data.lengthList);
288 m_data.lengthList->parse(value, SVGLength::lengthModeForAnimatedLengthAttribute(attrName));
H A DSVGAnimatedType.h108 const SVGLengthList& lengthList() const function in class:WebCore::SVGAnimatedType
111 return *m_data.lengthList;
211 SVGLengthList& lengthList() function in class:WebCore::SVGAnimatedType
214 return *m_data.lengthList;
290 SVGLengthList* lengthList; member in union:WebCore::SVGAnimatedType::DataUnion

Completed in 172 milliseconds