OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:contextElement
(Results
1 - 25
of
70
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatorFactory.h
47
static PassOwnPtr<SVGAnimatedTypeAnimator> create(SVGAnimationElement* animationElement, SVGElement*
contextElement
, AnimatedPropertyType attributeType)
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
...]
SVGPathSegList.cpp
40
void SVGPathSegList::commitChange(SVGElement*
contextElement
, ListModification listModification)
42
ASSERT(
contextElement
);
43
toSVGPathElement(
contextElement
)->pathSegListChanged(m_role, listModification);
SVGTests.h
53
void synchronizeRequiredFeatures(SVGElement*
contextElement
);
54
void synchronizeRequiredExtensions(SVGElement*
contextElement
);
55
void synchronizeSystemLanguage(SVGElement*
contextElement
);
SVGViewSpec.h
42
static PassRefPtr<SVGViewSpec> create(WeakPtr<SVGSVGElement>
contextElement
)
44
return adoptRef(new SVGViewSpec(
contextElement
));
66
SVGElement*
contextElement
() const { return m_contextElement.get(); }
95
static PassRefPtr<SVGAnimatedProperty> lookupOrCreateTransformWrapper(SVGViewSpec*
contextElement
);
96
static PassRefPtr<SVGAnimatedProperty> lookupOrCreateViewBoxWrapper(SVGViewSpec*
contextElement
);
97
static PassRefPtr<SVGAnimatedProperty> lookupOrCreatePreserveAspectRatioWrapper(SVGViewSpec*
contextElement
);
SVGPathSegList.h
43
void commitChange(SVGElement*
contextElement
, ListModification);
SVGStringList.cpp
30
void SVGStringList::commitChange(SVGElement*
contextElement
)
32
ASSERT(
contextElement
);
33
contextElement
->invalidateSVGAttributes();
34
contextElement
->svgAttributeChanged(m_attributeName);
SVGTests.cpp
155
void SVGTests::synchronizeRequiredFeatures(SVGElement*
contextElement
)
157
ASSERT(
contextElement
);
161
m_requiredFeatures.synchronize(
contextElement
, requiredFeaturesPropertyInfo()->attributeName, value);
164
void SVGTests::synchronizeRequiredExtensions(SVGElement*
contextElement
)
166
ASSERT(
contextElement
);
170
m_requiredExtensions.synchronize(
contextElement
, requiredExtensionsPropertyInfo()->attributeName, value);
173
void SVGTests::synchronizeSystemLanguage(SVGElement*
contextElement
)
175
ASSERT(
contextElement
);
179
m_systemLanguage.synchronize(
contextElement
, systemLanguagePropertyInfo()->attributeName, value);
SVGPolyElement.h
56
static void synchronizePoints(SVGElement*
contextElement
);
57
static PassRefPtr<SVGAnimatedProperty> lookupOrCreatePointsWrapper(SVGElement*
contextElement
);
SVGStringList.h
43
void commitChange(SVGElement*
contextElement
);
SVGPolyElement.cpp
136
void SVGPolyElement::synchronizePoints(SVGElement*
contextElement
)
138
ASSERT(
contextElement
);
139
SVGPolyElement* ownerType = toSVGPolyElement(
contextElement
);
145
PassRefPtr<SVGAnimatedProperty> SVGPolyElement::lookupOrCreatePointsWrapper(SVGElement*
contextElement
)
147
ASSERT(
contextElement
);
148
SVGPolyElement* ownerType = toSVGPolyElement(
contextElement
);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedEnumerationPropertyTearOff.h
42
static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property)
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)
57
: SVGAnimatedStaticPropertyTearOff<unsigned>(
contextElement
, attributeName, animatedPropertyType, property)
SVGAnimatedTransformListPropertyTearOff.h
45
static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
47
ASSERT(
contextElement
);
48
return adoptRef(new SVGAnimatedTransformListPropertyTearOff(
contextElement
, attributeName, animatedPropertyType, values));
52
SVGAnimatedTransformListPropertyTearOff(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
53
: SVGAnimatedListPropertyTearOff<SVGTransformList>(
contextElement
, attributeName, animatedPropertyType, values)
SVGAttributeToPropertyMap.h
44
void animatedPropertiesForAttribute(SVGElement*
contextElement
, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >&);
47
void synchronizeProperties(SVGElement*
contextElement
);
48
bool synchronizeProperty(SVGElement*
contextElement
, const QualifiedName& attributeName);
52
void synchronizeProperty(SVGElement*
contextElement
, const QualifiedName& attributeName, const SVGPropertyInfo*);
53
PassRefPtr<SVGAnimatedProperty> animatedProperty(SVGElement*
contextElement
, const QualifiedName& attributeName, const SVGPropertyInfo*);
SVGStaticPropertyTearOff.h
32
template<typename
ContextElement
, typename PropertyType>
35
typedef SVGStaticPropertyTearOff<
ContextElement
, PropertyType> Self;
36
typedef void (
ContextElement
::*UpdateMethod)();
40
static PassRefPtr<Self> create(
ContextElement
*
contextElement
, PropertyType& value, UpdateMethod update)
42
ASSERT(
contextElement
);
43
return adoptRef(new Self(
contextElement
, value, update));
49
SVGStaticPropertyTearOff(
ContextElement
*
contextElement
, PropertyType& value, UpdateMethod update)
52
, m_contextElement(
contextElement
)
[
all
...]
SVGAnimatedStaticPropertyTearOff.h
52
static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
54
ASSERT(
contextElement
);
55
return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(
contextElement
, attributeName, animatedPropertyType, property));
102
SVGAnimatedStaticPropertyTearOff(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
103
: SVGAnimatedProperty(
contextElement
, attributeName, animatedPropertyType)
SVGAnimatedPathSegListPropertyTearOff.h
62
static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
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)
108
: SVGAnimatedListPropertyTearOff<SVGPathSegList>(
contextElement
, attributeName, animatedPropertyType, values)
SVGStaticListPropertyTearOff.h
40
static PassRefPtr<SVGStaticListPropertyTearOff<PropertyType> > create(SVGElement*
contextElement
, PropertyType& values)
42
ASSERT(
contextElement
);
43
return adoptRef(new SVGStaticListPropertyTearOff<PropertyType>(
contextElement
, values));
46
SVGElement*
contextElement
() const { return m_contextElement; }
85
SVGStaticListPropertyTearOff(SVGElement*
contextElement
, PropertyType& values)
87
, m_contextElement(
contextElement
)
SVGPathSegListPropertyTearOff.cpp
55
ASSERT(static_cast<SVGPathSegWithContext*>(returnedItem.get())->
contextElement
() ==
contextElement
());
87
SVGPathElement* SVGPathSegListPropertyTearOff::
contextElement
() const
89
SVGElement*
contextElement
= m_animatedProperty->
contextElement
();
90
ASSERT(
contextElement
);
91
return toSVGPathElement(
contextElement
);
100
newItemWithContext->setContextAndRole(
contextElement
(), m_pathSegRole);
SVGAnimatedPropertyTearOff.h
61
static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
63
ASSERT(
contextElement
);
64
return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(
contextElement
, attributeName, animatedPropertyType, property));
110
SVGAnimatedPropertyTearOff(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
111
: SVGAnimatedProperty(
contextElement
, attributeName, animatedPropertyType)
SVGAnimatedProperty.cpp
28
SVGAnimatedProperty::SVGAnimatedProperty(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType)
29
: m_contextElement(
contextElement
)
35
contextElement
->setContextElement();
SVGAttributeToPropertyMap.cpp
89
void SVGAttributeToPropertyMap::synchronizeProperties(SVGElement*
contextElement
)
91
ASSERT(
contextElement
);
99
synchronizeProperty(
contextElement
, it->key, *vectorIt);
103
bool SVGAttributeToPropertyMap::synchronizeProperty(SVGElement*
contextElement
, const QualifiedName& attributeName)
105
ASSERT(
contextElement
);
112
synchronizeProperty(
contextElement
, attributeName, *vectorIt);
131
void SVGAttributeToPropertyMap::synchronizeProperty(SVGElement*
contextElement
, const QualifiedName& attributeName, const SVGPropertyInfo* info)
136
(*info->synchronizeProperty)(
contextElement
);
139
PassRefPtr<SVGAnimatedProperty> SVGAttributeToPropertyMap::animatedProperty(SVGElement*
contextElement
, const QualifiedName& attributeName, const SVGPropertyInfo* info)
144
return (*info->lookupOrCreateWrapperForAnimatedProperty)(
contextElement
);
[
all
...]
SVGAnimatedListPropertyTearOff.h
120
ASSERT(
contextElement
());
165
static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& values)
167
ASSERT(
contextElement
);
168
return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(
contextElement
, attributeName, animatedPropertyType, values));
172
SVGAnimatedListPropertyTearOff(SVGElement*
contextElement
, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& values)
173
: SVGAnimatedProperty(
contextElement
, attributeName, animatedPropertyType)
/external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentFragment.h
38
void parseHTML(const String&, Element*
contextElement
, ParserContentPolicy = AllowScriptingContent);
39
bool parseXML(const String&, Element*
contextElement
, ParserContentPolicy = AllowScriptingContent);
DocumentFragment.cpp
75
void DocumentFragment::parseHTML(const String& source, Element*
contextElement
, ParserContentPolicy parserContentPolicy)
77
HTMLDocumentParser::parseDocumentFragment(source, this,
contextElement
, parserContentPolicy);
80
bool DocumentFragment::parseXML(const String& source, Element*
contextElement
, ParserContentPolicy parserContentPolicy)
82
return XMLDocumentParser::parseDocumentFragment(source, this,
contextElement
, parserContentPolicy);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp
48
SVGLengthContext lengthContext(wrapper->
contextElement
());
70
SVGLengthContext lengthContext(wrapper->
contextElement
());
95
SVGLengthContext lengthContext(wrapper->
contextElement
());
Completed in 346 milliseconds
1
2
3