OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnimatedPropertyType
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGPropertyInfo.h
36
enum
AnimatedPropertyType
{
63
SVGPropertyInfo(
AnimatedPropertyType
newType, AnimatedPropertyState newState, const QualifiedName& newAttributeName,
66
:
animatedPropertyType
(newType)
75
AnimatedPropertyType
animatedPropertyType
;
SVGAnimatedEnumerationPropertyTearOff.h
42
static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName,
AnimatedPropertyType
animatedPropertyType
, EnumType& property)
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)
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)
SVGAnimatedProperty.h
37
AnimatedPropertyType
animatedPropertyType
() const { return m_animatedPropertyType; }
58
wrapper = TearOffType::create(element, info->attributeName, info->
animatedPropertyType
, property);
83
SVGAnimatedProperty(SVGElement*, const QualifiedName&,
AnimatedPropertyType
);
90
AnimatedPropertyType
m_animatedPropertyType;
SVGAnimatedStaticPropertyTearOff.h
52
static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName,
AnimatedPropertyType
animatedPropertyType
, PropertyType& property)
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
)
SVGAttributeToPropertyMap.h
45
void animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<
AnimatedPropertyType
>&);
SVGAnimatedPathSegListPropertyTearOff.h
62
static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName,
AnimatedPropertyType
animatedPropertyType
, SVGPathSegList& values)
65
return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName,
animatedPropertyType
, values));
107
SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName,
AnimatedPropertyType
animatedPropertyType
, SVGPathSegList& values)
108
: SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName,
animatedPropertyType
, values)
SVGAnimatedPropertyTearOff.h
61
static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName,
AnimatedPropertyType
animatedPropertyType
, PropertyType& property)
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
)
31
, m_animatedPropertyType(
animatedPropertyType
)
SVGAnimatedListPropertyTearOff.h
165
static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName,
AnimatedPropertyType
animatedPropertyType
, PropertyType& values)
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
)
SVGAttributeToPropertyMap.cpp
77
void SVGAttributeToPropertyMap::animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<
AnimatedPropertyType
>& propertyTypes)
86
propertyTypes.append((*vectorIt)->
animatedPropertyType
);
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.h
41
AnimatedPropertyType
determineAnimatedPropertyType(SVGElement*) const;
60
AnimatedPropertyType
m_animatedPropertyType;
SVGAnimatedType.h
60
static bool supportsAnimVal(
AnimatedPropertyType
);
62
AnimatedPropertyType
type() const { return m_type; }
274
SVGAnimatedType(
AnimatedPropertyType
);
276
AnimatedPropertyType
m_type;
SVGAnimatorFactory.h
47
static PassOwnPtr<SVGAnimatedTypeAnimator> create(SVGAnimationElement* animationElement, SVGElement* contextElement,
AnimatedPropertyType
attributeType)
SVGAnimatedTypeAnimator.h
63
AnimatedPropertyType
type() const { return m_type; }
68
SVGAnimatedTypeAnimator(
AnimatedPropertyType
, SVGAnimationElement*, SVGElement*);
173
// We can't assert property->
animatedPropertyType
() == m_type, as there's an exception for SVGMarkerElements orient attribute.
174
if (property->
animatedPropertyType
() != m_type) {
176
ASSERT(property->
animatedPropertyType
() == AnimatedEnumeration);
181
AnimatedPropertyType
m_type;
SVGAnimateElement.cpp
66
AnimatedPropertyType
SVGAnimateElement::determineAnimatedPropertyType(SVGElement* targetElement) const
70
Vector<
AnimatedPropertyType
> propertyTypes;
76
AnimatedPropertyType
type = propertyTypes[0];
183
static inline bool propertyTypesAreConsistent(
AnimatedPropertyType
expectedPropertyType, const SVGElementAnimatedPropertyList& animatedTypes)
188
if (expectedPropertyType != it->properties[i]->
animatedPropertyType
()) {
190
if (expectedPropertyType == AnimatedAngle && it->properties[i]->
animatedPropertyType
() == AnimatedEnumeration)
SVGAnimatedTypeAnimator.cpp
38
SVGAnimatedTypeAnimator::SVGAnimatedTypeAnimator(
AnimatedPropertyType
type, SVGAnimationElement* animationElement, SVGElement* contextElement)
97
if (property->
animatedPropertyType
() != m_type) {
99
ASSERT(property->
animatedPropertyType
() == AnimatedEnumeration);
SVGElement.h
94
virtual void animatedPropertyTypeForAttribute(const QualifiedName&, Vector<
AnimatedPropertyType
>&);
SVGAnimatedType.cpp
29
SVGAnimatedType::SVGAnimatedType(
AnimatedPropertyType
type)
324
bool SVGAnimatedType::supportsAnimVal(
AnimatedPropertyType
type)
SVGAnimationElement.cpp
510
AnimatedPropertyType
attributeType = toSVGAnimateElement(this)->determineAnimatedPropertyType(targetElement());
SVGElement.cpp
695
typedef HashMap<QualifiedName,
AnimatedPropertyType
> AttributeToPropertyTypeMap;
[
all
...]
Completed in 2574 milliseconds