/external/chromium_org/third_party/WebKit/Source/core/svg/properties/ |
D | SVGAnimatedProperty.cpp | 28 SVGAnimatedProperty::SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attribute… in SVGAnimatedProperty() function in WebCore::SVGAnimatedProperty 38 SVGAnimatedProperty::~SVGAnimatedProperty() in ~SVGAnimatedProperty() 44 void SVGAnimatedProperty::detachAnimatedPropertiesForElement(SVGElement* element) in detachAnimatedPropertiesForElement() 63 RefPtr<SVGAnimatedProperty> protect = cache->get(*it); in detachAnimatedPropertiesForElement() 68 void SVGAnimatedProperty::commitChange() in commitChange() 76 SVGAnimatedProperty::Cache* SVGAnimatedProperty::animatedPropertyCache() in animatedPropertyCache()
|
D | SVGAnimatedProperty.h | 32 class SVGAnimatedProperty : public RefCounted<SVGAnimatedProperty> { 47 …typedef HashMap<SVGAnimatedPropertyDescription, RefPtr<SVGAnimatedProperty>, SVGAnimatedPropertyDe… 49 virtual ~SVGAnimatedProperty(); 56 RefPtr<SVGAnimatedProperty> wrapper = animatedPropertyCache()->get(key); in lookupOrCreateWrapper() 83 SVGAnimatedProperty(SVGElement*, const QualifiedName&, AnimatedPropertyType);
|
D | SVGPropertyTearOff.h | 44 …static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, Proper… in create() 57 SVGAnimatedProperty* animatedProperty() const { return m_animatedProperty; } in animatedProperty() 72 void setAnimatedProperty(SVGAnimatedProperty* animatedProperty) in setAnimatedProperty() 129 …SVGPropertyTearOff(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& valu… in SVGPropertyTearOff() 181 SVGAnimatedProperty* m_animatedProperty;
|
D | SVGAttributeToPropertyMap.h | 28 class SVGAnimatedProperty; variable 44 …lement* contextElement, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >&); 53 …PassRefPtr<SVGAnimatedProperty> animatedProperty(SVGElement* contextElement, const QualifiedName& …
|
D | SVGAnimatedPropertyMacros.h | 108 …if (TearOffType* wrapper = SVGAnimatedProperty::lookupWrapper<UseOwnerType, TearOffType>(this, Low… 139 PassRefPtr<SVGAnimatedProperty> OwnerType::lookupOrCreate##UpperProperty##Wrapper(SVGElement* maske… 143 …return SVGAnimatedProperty::lookupOrCreateWrapper<UseOwnerType, TearOffType, PropertyType>(ownerTy… 171 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreate##UpperProperty##Wrapper(SVGElement* maskedOw… 184 …if (TearOffType* wrapper = SVGAnimatedProperty::lookupWrapper<UseOwnerType, TearOffType>(this, Low…
|
D | SVGPropertyInfo.h | 28 class SVGAnimatedProperty; variable 61 … typedef PassRefPtr<SVGAnimatedProperty> (*LookupOrCreateWrapperForAnimatedProperty)(SVGElement*);
|
D | SVGAnimatedStaticPropertyTearOff.h | 30 class SVGAnimatedStaticPropertyTearOff : public SVGAnimatedProperty { 103 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType) in SVGAnimatedStaticPropertyTearOff()
|
D | SVGMatrixTearOff.h | 32 …static PassRefPtr<SVGMatrixTearOff> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole … in create() 79 SVGMatrixTearOff(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, SVGMatrix& value) in SVGMatrixTearOff()
|
D | SVGAnimatedPropertyTearOff.h | 30 class SVGAnimatedPropertyTearOff : public SVGAnimatedProperty, public ScriptWrappable { 111 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType) in SVGAnimatedPropertyTearOff()
|
D | SVGAnimatedListPropertyTearOff.h | 33 class SVGAnimatedListPropertyTearOff : public SVGAnimatedProperty { 173 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType) in SVGAnimatedListPropertyTearOff()
|
D | SVGAttributeToPropertyMap.cpp | 64 …ment* ownerType, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >& propert… in animatedPropertiesForAttribute() 139 PassRefPtr<SVGAnimatedProperty> SVGAttributeToPropertyMap::animatedProperty(SVGElement* contextElem… in animatedProperty()
|
D | SVGPathSegListPropertyTearOff.cpp | 97 SVGAnimatedProperty* animatedPropertyOfItem = newItemWithContext->animatedProperty(); in processIncomingListItemValue()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGPolyElement.cpp | 50 …SVGAnimatedProperty* wrapper = SVGAnimatedProperty::lookupWrapper<SVGPolyElement, SVGAnimatedPoint… in pointsCurrentValue() 96 …if (SVGAnimatedProperty* wrapper = SVGAnimatedProperty::lookupWrapper<SVGPolyElement, SVGAnimatedP… in parseAttribute() 145 PassRefPtr<SVGAnimatedProperty> SVGPolyElement::lookupOrCreatePointsWrapper(SVGElement* contextElem… in lookupOrCreatePointsWrapper() 149 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGPolyElement, SVGAnimatedPointList, SVGPointLi… in lookupOrCreatePointsWrapper()
|
D | SVGViewSpec.cpp | 117 …if (SVGAnimatedProperty* wrapper = SVGAnimatedProperty::lookupWrapper<SVGElement, SVGAnimatedTrans… in setTransformString() 170 PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreateViewBoxWrapper(SVGViewSpec* ownerType) in lookupOrCreateViewBoxWrapper() 174 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGElement, SVGAnimatedRect, SVGRect>(ownerType-… in lookupOrCreateViewBoxWrapper() 177 PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec* … in lookupOrCreatePreserveAspectRatioWrapper() 181 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGElement, SVGAnimatedPreserveAspectRatio, SVGP… in lookupOrCreatePreserveAspectRatioWrapper() 184 PassRefPtr<SVGAnimatedProperty> SVGViewSpec::lookupOrCreateTransformWrapper(SVGViewSpec* ownerType) in lookupOrCreateTransformWrapper() 188 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGElement, SVGAnimatedTransformList, SVGTransfo… in lookupOrCreateTransformWrapper()
|
D | SVGAnimatedTypeAnimator.cpp | 33 …s::SVGElementAnimatedProperties(SVGElement* element, Vector<RefPtr<SVGAnimatedProperty> >& propert… in SVGElementAnimatedProperties() 68 Vector<RefPtr<SVGAnimatedProperty> > targetProperties; in findAnimatedPropertiesForAttributeName() 84 Vector<RefPtr<SVGAnimatedProperty> > instanceProperties; in findAnimatedPropertiesForAttributeName() 96 RefPtr<SVGAnimatedProperty> property = it->properties[i]; in findAnimatedPropertiesForAttributeName()
|
D | SVGViewSpec.h | 95 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreateTransformWrapper(SVGViewSpec* contextElement); 96 … static PassRefPtr<SVGAnimatedProperty> lookupOrCreateViewBoxWrapper(SVGViewSpec* contextElement); 97 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec* conte…
|
D | SVGPathElement.cpp | 259 …if (m_pathSegList.shouldSynchronize && !SVGAnimatedProperty::lookupWrapper<SVGPathElement, SVGAnim… in svgAttributeChanged() 303 …SVGAnimatedProperty* property = SVGAnimatedProperty::lookupWrapper<SVGPathElement, SVGAnimatedPath… in pathByteStream() 309 PassRefPtr<SVGAnimatedProperty> SVGPathElement::lookupOrCreateDWrapper(SVGElement* contextElement) in lookupOrCreateDWrapper() 314 …if (SVGAnimatedProperty* property = SVGAnimatedProperty::lookupWrapper<SVGPathElement, SVGAnimated… in lookupOrCreateDWrapper() 320 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGPathElement, SVGAnimatedPathSegListPropertyTe… in lookupOrCreateDWrapper()
|
D | SVGPathSegWithContext.h | 35 SVGAnimatedProperty* animatedProperty() const in animatedProperty() 41 …return SVGAnimatedProperty::lookupWrapper<SVGPathElement, SVGAnimatedPathSegListPropertyTearOff>(m… in animatedProperty()
|
D | SVGAnimatedTypeAnimator.h | 34 SVGElementAnimatedProperties(SVGElement*, Vector<RefPtr<SVGAnimatedProperty> >&); 37 Vector<RefPtr<SVGAnimatedProperty> > properties; 169 AnimValType* castAnimatedPropertyToActualType(SVGAnimatedProperty* property) in castAnimatedPropertyToActualType()
|
D | SVGPolyElement.h | 57 static PassRefPtr<SVGAnimatedProperty> lookupOrCreatePointsWrapper(SVGElement* contextElement);
|
D | SVGMarkerElement.cpp | 240 PassRefPtr<SVGAnimatedProperty> SVGMarkerElement::lookupOrCreateOrientTypeWrapper(SVGElement* conte… in lookupOrCreateOrientTypeWrapper() 244 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGMarkerElement, SVGAnimatedEnumerationProperty… in lookupOrCreateOrientTypeWrapper()
|
D | SVGAnimateElement.h | 32 class SVGAnimatedProperty; variable
|
D | SVGTextContentElement.cpp | 85 PassRefPtr<SVGAnimatedProperty> SVGTextContentElement::lookupOrCreateTextLengthWrapper(SVGElement* … in lookupOrCreateTextLengthWrapper() 89 …return SVGAnimatedProperty::lookupOrCreateWrapper<SVGTextContentElement, SVGAnimatedLength, SVGLen… in lookupOrCreateTextLengthWrapper()
|
D | SVGTextContentElement.h | 115 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreateTextLengthWrapper(SVGElement* contextElement);
|
D | SVGMarkerElement.h | 125 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreateOrientTypeWrapper(SVGElement* contextElement);
|