HomeSort by relevance Sort by last modified time
    Searched refs:SVGListPropertyTearOff (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/svg/
SVGPolyElement.h 39 SVGListPropertyTearOff<SVGPointList>* points();
40 SVGListPropertyTearOff<SVGPointList>* animatedPoints();
SVGPolyElement.cpp 131 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::points()
139 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(m_animatablePointsList->baseVal());
142 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::animatedPoints()
150 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(m_animatablePointsList->animVal());
  /external/webkit/Source/WebCore/svg/properties/
SVGTransformListPropertyTearOff.h 24 #include "SVGListPropertyTearOff.h"
30 class SVGTransformListPropertyTearOff : public SVGListPropertyTearOff<SVGTransformList> {
35 static PassRefPtr<SVGListPropertyTearOff<SVGTransformList> > create(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role)
74 : SVGListPropertyTearOff<SVGTransformList>(animatedProperty, role)
SVGAnimatedListPropertyTearOff.h 25 #include "SVGListPropertyTearOff.h"
43 m_baseVal = SVGListPropertyTearOff<PropertyType>::create(this, BaseValRole);
50 m_animVal = SVGListPropertyTearOff<PropertyType>::create(this, AnimValRole);
60 return static_pointer_cast<SVGListPropertyTearOff<PropertyType> >(m_baseVal)->removeItemFromList(static_cast<ListItemTearOff*>(property), shouldSynchronizeWrappers);
SVGListPropertyTearOff.h 29 class SVGListPropertyTearOff : public SVGListProperty<PropertyType> {
39 static PassRefPtr<SVGListPropertyTearOff<PropertyType> > create(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role)
42 return adoptRef(new SVGListPropertyTearOff<PropertyType>(animatedProperty, role));
113 SVGListPropertyTearOff(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role)
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm 74 "SVGLengthList" => "SVGListPropertyTearOff<SVGLengthList>",
77 "SVGNumberList" => "SVGListPropertyTearOff<SVGNumberList>",
80 "SVGPointList" => "SVGListPropertyTearOff<SVGPointList>",
390 } elsif ($svgTypeNeedingTearOff =~ /SVGListPropertyTearOff/) {
391 $svgTypeNeedingTearOff =~ s/SVGListPropertyTearOff<//;
CodeGeneratorObjC.pm 667 } elsif ($svgNativeType =~ /SVGListPropertyTearOff/ or $svgNativeType =~ /SVGStaticListPropertyTearOff/) {
    [all...]
CodeGeneratorJS.pm     [all...]
CodeGeneratorV8.pm 202 } elsif ($svgNativeType =~ /SVGListPropertyTearOff/ or $svgNativeType =~ /SVGStaticListPropertyTearOff/) {
266 push(@headerContent, "\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n");
    [all...]

Completed in 116 milliseconds