Searched defs:contextElement (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatorFactory.h47 static PassOwnPtr<SVGAnimatedTypeAnimator> create(SVGAnimationElement* animationElement, SVGElement* contextElement, AnimatedPropertyType attributeType) argument
50 ASSERT(contextElement);
54 return adoptPtr(new SVGAnimatedAngleAnimator(animationElement, contextElement));
56 return adoptPtr(new SVGAnimatedBooleanAnimator(animationElement, contextElement));
58 return adoptPtr(new SVGAnimatedColorAnimator(animationElement, contextElement));
60 return adoptPtr(new SVGAnimatedEnumerationAnimator(animationElement, contextElement));
62 return adoptPtr(new SVGAnimatedIntegerAnimator(animationElement, contextElement));
64 return adoptPtr(new SVGAnimatedIntegerOptionalIntegerAnimator(animationElement, contextElement));
66 return adoptPtr(new SVGAnimatedLengthAnimator(animationElement, contextElement));
68 return adoptPtr(new SVGAnimatedLengthListAnimator(animationElement, contextElement));
[all...]
H A DSVGPathSegList.cpp40 void SVGPathSegList::commitChange(SVGElement* contextElement, ListModification listModification) argument
42 ASSERT(contextElement);
43 toSVGPathElement(contextElement)->pathSegListChanged(m_role, listModification);
H A DSVGStringList.cpp30 void SVGStringList::commitChange(SVGElement* contextElement) argument
32 ASSERT(contextElement);
33 contextElement->invalidateSVGAttributes();
34 contextElement->svgAttributeChanged(m_attributeName);
H A DSVGPathSegWithContext.h50 SVGPathElement* contextElement() const { return m_element; } function in class:WebCore::SVGPathSegWithContext
H A DSVGAnimatedBoolean.cpp28 SVGAnimatedBooleanAnimator::SVGAnimatedBooleanAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement) argument
29 : SVGAnimatedTypeAnimator(AnimatedBoolean, animationElement, contextElement)
H A DSVGAnimatedPreserveAspectRatio.cpp28 SVGAnimatedPreserveAspectRatioAnimator::SVGAnimatedPreserveAspectRatioAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement) argument
29 : SVGAnimatedTypeAnimator(AnimatedPreserveAspectRatio, animationElement, contextElement)
H A DSVGAnimatedString.cpp28 SVGAnimatedStringAnimator::SVGAnimatedStringAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement) argument
29 : SVGAnimatedTypeAnimator(AnimatedString, animationElement, contextElement)
H A DSVGPolyElement.cpp136 void SVGPolyElement::synchronizePoints(SVGElement* contextElement) argument
138 ASSERT(contextElement);
139 SVGPolyElement* ownerType = toSVGPolyElement(contextElement);
145 PassRefPtr<SVGAnimatedProperty> SVGPolyElement::lookupOrCreatePointsWrapper(SVGElement* contextElement) argument
147 ASSERT(contextElement);
148 SVGPolyElement* ownerType = toSVGPolyElement(contextElement);
H A DSVGTests.cpp155 void SVGTests::synchronizeRequiredFeatures(SVGElement* contextElement) argument
157 ASSERT(contextElement);
161 m_requiredFeatures.synchronize(contextElement, requiredFeaturesPropertyInfo()->attributeName, value);
164 void SVGTests::synchronizeRequiredExtensions(SVGElement* contextElement) argument
166 ASSERT(contextElement);
170 m_requiredExtensions.synchronize(contextElement, requiredExtensionsPropertyInfo()->attributeName, value);
173 void SVGTests::synchronizeSystemLanguage(SVGElement* contextElement) argument
175 ASSERT(contextElement);
179 m_systemLanguage.synchronize(contextElement, systemLanguagePropertyInfo()->attributeName, value);
H A DSVGViewSpec.h42 static PassRefPtr<SVGViewSpec> create(WeakPtr<SVGSVGElement> contextElement) argument
44 return adoptRef(new SVGViewSpec(contextElement));
66 SVGElement* contextElement() const { return m_contextElement.get(); } function in class:WebCore::FINAL
95 static PassRefPtr<SVGAnimatedProperty> lookupOrCreateTransformWrapper(SVGViewSpec* contextElement);
96 static PassRefPtr<SVGAnimatedProperty> lookupOrCreateViewBoxWrapper(SVGViewSpec* contextElement);
97 static PassRefPtr<SVGAnimatedProperty> lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec* contextElement);
H A DSVGAnimatedAngle.cpp29 SVGAnimatedAngleAnimator::SVGAnimatedAngleAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement) argument
30 : SVGAnimatedTypeAnimator(AnimatedAngle, animationElement, contextElement)
H A DSVGAnimatedColor.cpp31 SVGAnimatedColorAnimator::SVGAnimatedColorAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement) argument
32 : SVGAnimatedTypeAnimator(AnimatedColor, animationElement, contextElement)
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
H A DSVGAnimatedTransformListPropertyTearOff.h45 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values) argument
47 ASSERT(contextElement);
48 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
52 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values) argument
53 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, animatedPropertyType, values)
H A DSVGAnimatedEnumerationPropertyTearOff.h42 static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property) argument
44 ASSERT(contextElement);
45 return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName, animatedPropertyType, reinterpret_cast<unsigned&>(property)));
56 SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, unsigned& property) argument
57 : SVGAnimatedStaticPropertyTearOff<unsigned>(contextElement, attributeName, animatedPropertyType, property)
H A DSVGAnimatedProperty.cpp28 SVGAnimatedProperty::SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType) argument
29 : m_contextElement(contextElement)
35 contextElement->setContextElement();
H A DSVGStaticPropertyTearOff.h40 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update) argument
42 ASSERT(contextElement);
43 return adoptRef(new Self(contextElement, value, update));
49 SVGStaticPropertyTearOff(ContextElement* contextElement, PropertyType& value, UpdateMethod update) argument
52 , m_contextElement(contextElement)
H A DSVGAnimatedPathSegListPropertyTearOff.h62 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values) argument
64 ASSERT(contextElement);
65 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
91 SVGPathElement* pathElement = toSVGPathElement(contextElement());
107 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values) argument
108 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, animatedPropertyType, values)
H A DSVGAnimatedProperty.h34 SVGElement* contextElement() const { return m_contextElement; } function in class:WebCore::SVGAnimatedProperty
H A DSVGAnimatedPropertyTearOff.h61 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
63 ASSERT(contextElement);
64 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
110 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
111 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
H A DSVGAnimatedStaticPropertyTearOff.h52 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
54 ASSERT(contextElement);
55 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
102 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
103 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
H A DSVGAttributeToPropertyMap.cpp89 void SVGAttributeToPropertyMap::synchronizeProperties(SVGElement* contextElement) argument
91 ASSERT(contextElement);
99 synchronizeProperty(contextElement, it->key, *vectorIt);
103 bool SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName) argument
105 ASSERT(contextElement);
112 synchronizeProperty(contextElement, attributeName, *vectorIt);
131 void SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo* info) argument
136 (*info->synchronizeProperty)(contextElement);
139 PassRefPtr<SVGAnimatedProperty> SVGAttributeToPropertyMap::animatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo* info) argument
144 return (*info->lookupOrCreateWrapperForAnimatedProperty)(contextElement);
[all...]
H A DSVGPathSegListPropertyTearOff.cpp55 ASSERT(static_cast<SVGPathSegWithContext*>(returnedItem.get())->contextElement() == contextElement());
87 SVGPathElement* SVGPathSegListPropertyTearOff::contextElement() const function in class:WebCore::SVGPathSegListPropertyTearOff
89 SVGElement* contextElement = m_animatedProperty->contextElement(); local
90 ASSERT(contextElement);
91 return toSVGPathElement(contextElement);
100 newItemWithContext->setContextAndRole(contextElement(), m_pathSegRole);
H A DSVGStaticListPropertyTearOff.h40 static PassRefPtr<SVGStaticListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, PropertyType& values) argument
42 ASSERT(contextElement);
43 return adoptRef(new SVGStaticListPropertyTearOff<PropertyType>(contextElement, values));
46 SVGElement* contextElement() const { return m_contextElement; } function in class:WebCore::SVGStaticListPropertyTearOff
85 SVGStaticListPropertyTearOff(SVGElement* contextElement, PropertyType& values) argument
87 , m_contextElement(contextElement)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFragment.cpp75 void DocumentFragment::parseHTML(const String& source, Element* contextElement, ParserContentPolicy parserContentPolicy) argument
77 HTMLDocumentParser::parseDocumentFragment(source, this, contextElement, parserContentPolicy);
80 bool DocumentFragment::parseXML(const String& source, Element* contextElement, ParserContentPolicy parserContentPolicy) argument
82 return XMLDocumentParser::parseDocumentFragment(source, this, contextElement, parserContentPolicy);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutEngineSpacing.cpp82 float SVGTextLayoutEngineSpacing::calculateCSSKerningAndSpacing(const SVGRenderStyle* style, SVGElement* contextElement, UChar currentCharacter) argument
89 SVGLengthContext lengthContext(contextElement);

Completed in 351 milliseconds

123