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

  /external/webkit/WebCore/svg/
SVGAnimatedPropertyTraits.h 42 typedef const SVGAngle& PassType;
48 static String toString(PassType type) { return type.valueAsString(); }
54 typedef const bool& PassType;
60 static String toString(PassType type) { return type ? "true" : "false"; }
66 typedef const int& PassType;
72 static String toString(PassType type) { return String::number(type); }
78 typedef const long& PassType;
84 static String toString(PassType type) { return String::number(type); }
90 typedef const SVGLength& PassType;
96 static String toString(PassType type) { return type.valueAsString();
    [all...]
SVGExternalResourcesRequired.h 46 virtual void setExternalResourcesRequiredBaseValue(SVGAnimatedPropertyTraits<bool>::PassType) = 0;
SVGFitToViewBox.h 43 virtual void setViewBoxBaseValue(SVGAnimatedPropertyTraits<FloatRect>::PassType) = 0;
44 virtual void setPreserveAspectRatioBaseValue(SVGAnimatedPropertyTraits<SVGPreserveAspectRatio>::PassType) = 0;
SVGURIReference.h 43 virtual void setHrefBaseValue(SVGAnimatedPropertyTraits<String>::PassType) = 0;
SVGAnimatedProperty.h 37 typedef typename SVGAnimatedPropertyTraits<AnimatedType>::PassType PassType;
48 virtual void setBaseVal(PassType type)
54 virtual void setAnimVal(PassType type)
86 typedef typename SVGAnimatedPropertyTraits<AnimatedType>::PassType PassType;
113 void setValue(PassType type) { m_value = type; }
114 void setBaseValue(PassType type) { m_value = type; }
180 void set##UpperProperty(SVGAnimatedPropertyTraits<AnimatedType>::PassType type) \
187 void set##UpperProperty##BaseValue(SVGAnimatedPropertyTraits<AnimatedType>::PassType type)
    [all...]
SVGAnimatedTemplate.h 105 typedef typename SVGAnimatedPropertyTraits<AnimatedType>::PassType PassType;
111 virtual void setBaseVal(PassType) = 0;
114 virtual void setAnimVal(PassType) = 0;

Completed in 1488 milliseconds