Home
last modified time | relevance | path

Searched refs:contextElement (Results 1 – 25 of 72) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGAnimatorFactory.h47 …eAnimator> create(SVGAnimationElement* animationElement, SVGElement* contextElement, AnimatedPrope… in create() argument
50 ASSERT(contextElement); in create()
54 return adoptPtr(new SVGAnimatedAngleAnimator(animationElement, contextElement)); in create()
56 return adoptPtr(new SVGAnimatedBooleanAnimator(animationElement, contextElement)); in create()
58 return adoptPtr(new SVGAnimatedColorAnimator(animationElement, contextElement)); in create()
60 return adoptPtr(new SVGAnimatedEnumerationAnimator(animationElement, contextElement)); in create()
62 return adoptPtr(new SVGAnimatedIntegerAnimator(animationElement, contextElement)); in create()
64 … return adoptPtr(new SVGAnimatedIntegerOptionalIntegerAnimator(animationElement, contextElement)); in create()
66 return adoptPtr(new SVGAnimatedLengthAnimator(animationElement, contextElement)); in create()
68 return adoptPtr(new SVGAnimatedLengthListAnimator(animationElement, contextElement)); in create()
[all …]
DSVGTests.cpp155 void SVGTests::synchronizeRequiredFeatures(SVGElement* contextElement) in synchronizeRequiredFeatures() argument
157 ASSERT(contextElement); in synchronizeRequiredFeatures()
161 …m_requiredFeatures.synchronize(contextElement, requiredFeaturesPropertyInfo()->attributeName, valu… in synchronizeRequiredFeatures()
164 void SVGTests::synchronizeRequiredExtensions(SVGElement* contextElement) in synchronizeRequiredExtensions() argument
166 ASSERT(contextElement); in synchronizeRequiredExtensions()
170 …m_requiredExtensions.synchronize(contextElement, requiredExtensionsPropertyInfo()->attributeName, … in synchronizeRequiredExtensions()
173 void SVGTests::synchronizeSystemLanguage(SVGElement* contextElement) in synchronizeSystemLanguage() argument
175 ASSERT(contextElement); in synchronizeSystemLanguage()
179 … m_systemLanguage.synchronize(contextElement, systemLanguagePropertyInfo()->attributeName, value); in synchronizeSystemLanguage()
DSVGViewSpec.h42 static PassRefPtr<SVGViewSpec> create(WeakPtr<SVGSVGElement> contextElement) in create() argument
44 return adoptRef(new SVGViewSpec(contextElement)); in create()
66 SVGElement* contextElement() const { return m_contextElement.get(); } in contextElement() function
95 …static PassRefPtr<SVGAnimatedProperty> lookupOrCreateTransformWrapper(SVGViewSpec* contextElement);
96 … static PassRefPtr<SVGAnimatedProperty> lookupOrCreateViewBoxWrapper(SVGViewSpec* contextElement);
97 …sRefPtr<SVGAnimatedProperty> lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec* contextElement);
DSVGPolyElement.cpp136 void SVGPolyElement::synchronizePoints(SVGElement* contextElement) in synchronizePoints() argument
138 ASSERT(contextElement); in synchronizePoints()
139 SVGPolyElement* ownerType = toSVGPolyElement(contextElement); in synchronizePoints()
145 …RefPtr<SVGAnimatedProperty> SVGPolyElement::lookupOrCreatePointsWrapper(SVGElement* contextElement) in lookupOrCreatePointsWrapper() argument
147 ASSERT(contextElement); in lookupOrCreatePointsWrapper()
148 SVGPolyElement* ownerType = toSVGPolyElement(contextElement); in lookupOrCreatePointsWrapper()
DSVGPathSegList.cpp40 void SVGPathSegList::commitChange(SVGElement* contextElement, ListModification listModification) in commitChange() argument
42 ASSERT(contextElement); in commitChange()
43 toSVGPathElement(contextElement)->pathSegListChanged(m_role, listModification); in commitChange()
DSVGViewSpec.cpp77 SVGViewSpec::SVGViewSpec(WeakPtr<SVGSVGElement> contextElement) in SVGViewSpec() argument
78 : m_contextElement(contextElement) in SVGViewSpec()
173 ASSERT(ownerType->contextElement()); in lookupOrCreateViewBoxWrapper()
174 …okupOrCreateWrapper<SVGElement, SVGAnimatedRect, SVGRect>(ownerType->contextElement(), viewBoxProp… in lookupOrCreateViewBoxWrapper()
180 ASSERT(ownerType->contextElement()); in lookupOrCreatePreserveAspectRatioWrapper()
181 …, SVGAnimatedPreserveAspectRatio, SVGPreserveAspectRatio>(ownerType->contextElement(), preserveAsp… in lookupOrCreatePreserveAspectRatioWrapper()
187 ASSERT(ownerType->contextElement()); in lookupOrCreateTransformWrapper()
188 …r<SVGElement, SVGAnimatedTransformList, SVGTransformList>(ownerType->contextElement(), transformPr… in lookupOrCreateTransformWrapper()
DSVGStringList.cpp30 void SVGStringList::commitChange(SVGElement* contextElement) in commitChange() argument
32 ASSERT(contextElement); in commitChange()
33 contextElement->invalidateSVGAttributes(); in commitChange()
34 contextElement->svgAttributeChanged(m_attributeName); in commitChange()
DSVGTests.h53 void synchronizeRequiredFeatures(SVGElement* contextElement);
54 void synchronizeRequiredExtensions(SVGElement* contextElement);
55 void synchronizeSystemLanguage(SVGElement* contextElement);
DSVGMarkerElement.cpp225 void SVGMarkerElement::synchronizeOrientType(SVGElement* contextElement) in synchronizeOrientType() argument
227 ASSERT(contextElement); in synchronizeOrientType()
228 SVGMarkerElement* ownerType = toSVGMarkerElement(contextElement); in synchronizeOrientType()
240 …<SVGAnimatedProperty> SVGMarkerElement::lookupOrCreateOrientTypeWrapper(SVGElement* contextElement) in lookupOrCreateOrientTypeWrapper() argument
242 ASSERT(contextElement); in lookupOrCreateOrientTypeWrapper()
243 SVGMarkerElement* ownerType = toSVGMarkerElement(contextElement); in lookupOrCreateOrientTypeWrapper()
DSVGTextContentElement.cpp75 void SVGTextContentElement::synchronizeTextLength(SVGElement* contextElement) in synchronizeTextLength() argument
77 ASSERT(contextElement); in synchronizeTextLength()
78 SVGTextContentElement* ownerType = toSVGTextContentElement(contextElement); in synchronizeTextLength()
85 …nimatedProperty> SVGTextContentElement::lookupOrCreateTextLengthWrapper(SVGElement* contextElement) in lookupOrCreateTextLengthWrapper() argument
87 ASSERT(contextElement); in lookupOrCreateTextLengthWrapper()
88 SVGTextContentElement* ownerType = toSVGTextContentElement(contextElement); in lookupOrCreateTextLengthWrapper()
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
DSVGPathSegListPropertyTearOff.cpp55 …ERT(static_cast<SVGPathSegWithContext*>(returnedItem.get())->contextElement() == contextElement()); in getItem()
87 SVGPathElement* SVGPathSegListPropertyTearOff::contextElement() const in contextElement() function in WebCore::SVGPathSegListPropertyTearOff
89 SVGElement* contextElement = m_animatedProperty->contextElement(); in contextElement() local
90 ASSERT(contextElement); in contextElement()
91 return toSVGPathElement(contextElement); in contextElement()
100 newItemWithContext->setContextAndRole(contextElement(), m_pathSegRole); in processIncomingListItemValue()
DSVGAttributeToPropertyMap.cpp89 void SVGAttributeToPropertyMap::synchronizeProperties(SVGElement* contextElement) in synchronizeProperties() argument
91 ASSERT(contextElement); in synchronizeProperties()
99 synchronizeProperty(contextElement, it->key, *vectorIt); in synchronizeProperties()
103 bool SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const QualifiedName… in synchronizeProperty() argument
105 ASSERT(contextElement); in synchronizeProperty()
112 synchronizeProperty(contextElement, attributeName, *vectorIt); in synchronizeProperty()
131 void SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const QualifiedName… in synchronizeProperty() argument
136 (*info->synchronizeProperty)(contextElement); in synchronizeProperty()
139 …tedProperty> SVGAttributeToPropertyMap::animatedProperty(SVGElement* contextElement, const Qualifi… in animatedProperty() argument
144 return (*info->lookupOrCreateWrapperForAnimatedProperty)(contextElement); in animatedProperty()
DSVGAttributeToPropertyMap.h44 …void animatedPropertiesForAttribute(SVGElement* contextElement, const QualifiedName& attributeName…
47 void synchronizeProperties(SVGElement* contextElement);
48 bool synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName);
52 …void synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVG…
53 …PassRefPtr<SVGAnimatedProperty> animatedProperty(SVGElement* contextElement, const QualifiedName& …
DSVGStaticPropertyTearOff.h40 …static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod u… in create() argument
42 ASSERT(contextElement); in create()
43 return adoptRef(new Self(contextElement, value, update)); in create()
49 … SVGStaticPropertyTearOff(ContextElement* contextElement, PropertyType& value, UpdateMethod update) in SVGStaticPropertyTearOff() argument
52 , m_contextElement(contextElement) in SVGStaticPropertyTearOff()
DSVGAnimatedEnumerationPropertyTearOff.h42 …SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const Qualifi… in create() argument
44 ASSERT(contextElement); in create()
45 …return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName,… in create()
56 …SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeNa… in SVGAnimatedEnumerationPropertyTearOff() argument
57 …: SVGAnimatedStaticPropertyTearOff<unsigned>(contextElement, attributeName, animatedPropertyType, … in SVGAnimatedEnumerationPropertyTearOff()
DSVGAnimatedTransformListPropertyTearOff.h45 …static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, cons… in create() argument
47 ASSERT(contextElement); in create()
48 …return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, animate… in create()
52 …SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attribute… in SVGAnimatedTransformListPropertyTearOff() argument
53 …: SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, animatedProperty… in SVGAnimatedTransformListPropertyTearOff()
DSVGStaticListPropertyTearOff.h40 …fPtr<SVGStaticListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, PropertyType&… in create() argument
42 ASSERT(contextElement); in create()
43 return adoptRef(new SVGStaticListPropertyTearOff<PropertyType>(contextElement, values)); in create()
46 SVGElement* contextElement() const { return m_contextElement; } in contextElement() function
85 SVGStaticListPropertyTearOff(SVGElement* contextElement, PropertyType& values) in SVGStaticListPropertyTearOff() argument
87 , m_contextElement(contextElement) in SVGStaticListPropertyTearOff()
DSVGAnimatedPathSegListPropertyTearOff.h62 …static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const … in create() argument
64 ASSERT(contextElement); in create()
65 …return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, animatedP… in create()
91 SVGPathElement* pathElement = toSVGPathElement(contextElement()); in animValDidChange()
107 …SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeNa… in SVGAnimatedPathSegListPropertyTearOff() argument
108 …: SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, animatedPropertyTy… in SVGAnimatedPathSegListPropertyTearOff()
DSVGAnimatedStaticPropertyTearOff.h52 …<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const Qualifi… in create() argument
54 ASSERT(contextElement); in create()
55 …return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, … in create()
102 …SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, A… in SVGAnimatedStaticPropertyTearOff() argument
103 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType) in SVGAnimatedStaticPropertyTearOff()
DSVGAnimatedPropertyTearOff.h61 …static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, co… in create() argument
63 ASSERT(contextElement); in create()
64 …return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, animat… in create()
110 …SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, Animate… in SVGAnimatedPropertyTearOff() argument
111 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType) in SVGAnimatedPropertyTearOff()
DSVGAnimatedListPropertyTearOff.h120 ASSERT(contextElement()); in animationEnded()
165 …tr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const Qualifi… in create() argument
167 ASSERT(contextElement); in create()
168 …return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(contextElement, attributeName, an… in create()
172 …SVGAnimatedListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, Ani… in SVGAnimatedListPropertyTearOff() argument
173 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType) in SVGAnimatedListPropertyTearOff()
DSVGAnimatedProperty.cpp28 SVGAnimatedProperty::SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attribute… in SVGAnimatedProperty() argument
29 : m_contextElement(contextElement) in SVGAnimatedProperty()
35 contextElement->setContextElement(); in SVGAnimatedProperty()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocumentFragment.cpp75 void DocumentFragment::parseHTML(const String& source, Element* contextElement, ParserContentPolicy… in parseHTML() argument
77 HTMLDocumentParser::parseDocumentFragment(source, this, contextElement, parserContentPolicy); in parseHTML()
80 bool DocumentFragment::parseXML(const String& source, Element* contextElement, ParserContentPolicy … in parseXML() argument
82 …return XMLDocumentParser::parseDocumentFragment(source, this, contextElement, parserContentPolicy); in parseXML()
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLTreeBuilder.h60 …ate(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContent… in create() argument
62 …return adoptPtr(new HTMLTreeBuilder(parser, fragment, contextElement, parserContentPolicy, options… in create()
119 …HTMLTreeBuilder(HTMLDocumentParser*, DocumentFragment*, Element* contextElement, ParserContentPoli…
200 FragmentParsingContext(DocumentFragment*, Element* contextElement);
204 …Element* contextElement() const { ASSERT(m_fragment); return m_contextElementStackItem->element();… in contextElement() function
/external/chromium_org/ui/webui/resources/js/cr/ui/
Dcontext_menu_handler.js46 menu.contextElement = e.currentTarget;
62 ev.element = menu.contextElement;
82 var originalContextElement = menu.contextElement;
83 menu.contextElement = null;
94 ev.element = menu.contextElement;

123