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

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedTransformListPropertyTearOff.h 31 virtual SVGListPropertyTearOff<SVGTransformList>* baseVal()
35 return static_cast<SVGListPropertyTearOff<SVGTransformList>*>(m_baseVal.get());
38 virtual SVGListPropertyTearOff<SVGTransformList>* animVal()
42 return static_cast<SVGListPropertyTearOff<SVGTransformList>*>(m_animVal.get());
SVGTransformListPropertyTearOff.h 26 #include "core/svg/properties/SVGListPropertyTearOff.h"
31 class SVGTransformListPropertyTearOff : public SVGListPropertyTearOff<SVGTransformList> {
36 static PassRefPtr<SVGListPropertyTearOff<SVGTransformList> > create(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role, SVGTransformList& values, ListWrapperCache& wrappers)
75 : SVGListPropertyTearOff<SVGTransformList>(animatedProperty, role, values, wrappers)
SVGListPropertyTearOff.h 30 class SVGListPropertyTearOff : public SVGListProperty<PropertyType> {
33 typedef SVGListPropertyTearOff<PropertyType> Self;
119 SVGListPropertyTearOff(AnimatedListPropertyTearOff* animatedProperty, SVGPropertyRole role, PropertyType& values, ListWrapperCache& wrappers)
SVGAnimatedListPropertyTearOff.h 24 #include "core/svg/properties/SVGListPropertyTearOff.h"
39 typedef SVGListPropertyTearOff<PropertyType> ListPropertyTearOff;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPolyElement.h 35 SVGListPropertyTearOff<SVGPointList>* points();
36 SVGListPropertyTearOff<SVGPointList>* animatedPoints();
SVGPolyElement.cpp 146 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::points()
149 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(static_pointer_cast<SVGAnimatedPointList>(lookupOrCreatePointsWrapper(this))->baseVal());
152 SVGListPropertyTearOff<SVGPointList>* SVGPolyElement::animatedPoints()
155 return static_cast<SVGListPropertyTearOff<SVGPointList>*>(static_pointer_cast<SVGAnimatedPointList>(lookupOrCreatePointsWrapper(this))->animVal());
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
deprecated_code_generator_v8.pm 204 "SVGLengthList" => "SVGListPropertyTearOff<SVGLengthList>",
207 "SVGNumberList" => "SVGListPropertyTearOff<SVGNumberList>",
210 "SVGPointList" => "SVGListPropertyTearOff<SVGPointList>",
512 } elsif ($svgNativeType =~ /SVGListPropertyTearOff/ or $svgNativeType =~ /SVGStaticListPropertyTearOff/ or $svgNativeType =~ /SVGTransformListPropertyTearOff/) {
618 $header{nameSpaceWebCore}->addHeader("\ntemplate<typename PropertyType> class SVGListPropertyTearOff;\n");
    [all...]

Completed in 50 milliseconds