Home
last modified time | relevance | path

Searched refs:ownerType (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGViewSpec.cpp170 PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreateViewBoxWrapper(SVGViewSpec* ownerType) in lookupOrCreateViewBoxWrapper() argument
172 ASSERT(ownerType); in lookupOrCreateViewBoxWrapper()
173 ASSERT(ownerType->contextElement()); in lookupOrCreateViewBoxWrapper()
174 …Wrapper<SVGElement, SVGAnimatedRect, SVGRect>(ownerType->contextElement(), viewBoxPropertyInfo(), in lookupOrCreateViewBoxWrapper()
177 …<SVGAnimatedProperty> SVGViewSpec::lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec* ownerType) in lookupOrCreatePreserveAspectRatioWrapper() argument
179 ASSERT(ownerType); in lookupOrCreatePreserveAspectRatioWrapper()
180 ASSERT(ownerType->contextElement()); in lookupOrCreatePreserveAspectRatioWrapper()
181 …rveAspectRatio, SVGPreserveAspectRatio>(ownerType->contextElement(), preserveAspectRatioPropertyIn… in lookupOrCreatePreserveAspectRatioWrapper()
184 PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreateTransformWrapper(SVGViewSpec* ownerType) in lookupOrCreateTransformWrapper() argument
186 ASSERT(ownerType); in lookupOrCreateTransformWrapper()
[all …]
DSVGPolyElement.cpp139 SVGPolyElement* ownerType = toSVGPolyElement(contextElement); in synchronizePoints() local
140 if (!ownerType->m_points.shouldSynchronize) in synchronizePoints()
142ownerType->m_points.synchronize(ownerType, pointsPropertyInfo()->attributeName, ownerType->m_point… in synchronizePoints()
148 SVGPolyElement* ownerType = toSVGPolyElement(contextElement); in lookupOrCreatePointsWrapper() local
150 (ownerType, pointsPropertyInfo(), ownerType->m_points.value); in lookupOrCreatePointsWrapper()
DSVGPathElement.cpp312 SVGPathElement* ownerType = toSVGPathElement(contextElement); in lookupOrCreateDWrapper() local
314 …y::lookupWrapper<SVGPathElement, SVGAnimatedPathSegListPropertyTearOff>(ownerType, dPropertyInfo()… in lookupOrCreateDWrapper()
318 …buildSVGPathSegListFromByteStream(ownerType->m_pathByteStream.get(), ownerType, ownerType->m_pathS… in lookupOrCreateDWrapper()
321 (ownerType, dPropertyInfo(), ownerType->m_pathSegList.value); in lookupOrCreateDWrapper()
327 SVGPathElement* ownerType = toSVGPathElement(contextElement); in synchronizeD() local
328 if (!ownerType->m_pathSegList.shouldSynchronize) in synchronizeD()
330ownerType->m_pathSegList.synchronize(ownerType, dPropertyInfo()->attributeName, ownerType->m_pathS… in synchronizeD()
DSVGMarkerElement.cpp228 SVGMarkerElement* ownerType = toSVGMarkerElement(contextElement); in synchronizeOrientType() local
229 if (!ownerType->m_orientType.shouldSynchronize) in synchronizeOrientType()
233 if (ownerType->m_orientType.value != SVGMarkerOrientAuto) in synchronizeOrientType()
237ownerType->m_orientType.synchronize(ownerType, orientTypePropertyInfo()->attributeName, autoString… in synchronizeOrientType()
243 SVGMarkerElement* ownerType = toSVGMarkerElement(contextElement); in lookupOrCreateOrientTypeWrapper() local
245 (ownerType, orientTypePropertyInfo(), ownerType->m_orientType.value); in lookupOrCreateOrientTypeWrapper()
DSVGTextContentElement.cpp78 SVGTextContentElement* ownerType = toSVGTextContentElement(contextElement); in synchronizeTextLength() local
79 if (!ownerType->m_textLength.shouldSynchronize) in synchronizeTextLength()
81 AtomicString value(SVGPropertyTraits<SVGLength>::toString(ownerType->m_specifiedTextLength)); in synchronizeTextLength()
82 ownerType->m_textLength.synchronize(ownerType, textLengthPropertyInfo()->attributeName, value); in synchronizeTextLength()
88 SVGTextContentElement* ownerType = toSVGTextContentElement(contextElement); in lookupOrCreateTextLengthWrapper() local
90 (ownerType, textLengthPropertyInfo(), ownerType->m_textLength.value); in lookupOrCreateTextLengthWrapper()
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
DSVGAnimatedPropertyMacros.h142 UseOwnerType* ownerType = static_cast<UseOwnerType*>(maskedOwnerType); \
143 …teWrapper<UseOwnerType, TearOffType, PropertyType>(ownerType, LowerProperty##PropertyInfo(), owner…
149 UseOwnerType* ownerType = static_cast<UseOwnerType*>(maskedOwnerType); \
150 ownerType->synchronize##UpperProperty(); \
DSVGAttributeToPropertyMap.cpp64 void SVGAttributeToPropertyMap::animatedPropertiesForAttribute(SVGElement* ownerType, const Qualifi… in animatedPropertiesForAttribute() argument
66 ASSERT(ownerType); in animatedPropertiesForAttribute()
74 properties.append(animatedProperty(ownerType, attributeName, *vectorIt)); in animatedPropertiesForAttribute()