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

  /external/webkit/Source/WebCore/svg/
SVGTransformDistance.h 24 #include "SVGTransform.h"
33 SVGTransformDistance(const SVGTransform& fromTransform, const SVGTransform& toTransform);
36 SVGTransform addToSVGTransform(const SVGTransform&) const;
37 void addSVGTransform(const SVGTransform&, bool absoluteValue = false);
39 static SVGTransform addSVGTransforms(const SVGTransform&, const SVGTransform&);
45 SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const AffineTransform&)
    [all...]
SVGTransformList.idl 34 [StrictTypeChecking, RequiresAllArguments=Raise] SVGTransform initialize(in SVGTransform item)
36 [StrictTypeChecking, RequiresAllArguments=Raise] SVGTransform getItem(in unsigned long index)
38 [StrictTypeChecking, RequiresAllArguments=Raise] SVGTransform insertItemBefore(in SVGTransform item, in unsigned long index)
40 [StrictTypeChecking, RequiresAllArguments=Raise] SVGTransform replaceItem(in SVGTransform item, in unsigned long index)
42 [StrictTypeChecking, RequiresAllArguments=Raise] SVGTransform removeItem(in unsigned long index)
44 [StrictTypeChecking, RequiresAllArguments=Raise] SVGTransform appendItem(in SVGTransform item
    [all...]
SVGTransformList.h 26 #include "SVGTransform.h"
31 class SVGTransformList : public Vector<SVGTransform> {
35 SVGTransform createSVGTransformFromMatrix(const SVGMatrix&) const;
36 SVGTransform consolidate();
48 typedef SVGTransform ListItemType;
SVGTransformDistance.cpp 27 #include "SVGTransform.h"
34 : m_type(SVGTransform::SVG_TRANSFORM_UNKNOWN)
41 SVGTransformDistance::SVGTransformDistance(SVGTransform::SVGTransformType type, float angle, float cx, float cy, const AffineTransform& transform)
50 SVGTransformDistance::SVGTransformDistance(const SVGTransform& fromSVGTransform, const SVGTransform& toSVGTransform)
59 case SVGTransform::SVG_TRANSFORM_UNKNOWN:
61 case SVGTransform::SVG_TRANSFORM_MATRIX:
64 case SVGTransform::SVG_TRANSFORM_ROTATE: {
71 case SVGTransform::SVG_TRANSFORM_TRANSLATE: {
76 case SVGTransform::SVG_TRANSFORM_SCALE:
    [all...]
SVGTransform.h 32 class SVGTransform {
44 SVGTransform();
45 SVGTransform(SVGTransformType);
46 explicit SVGTransform(const AffineTransform&);
72 friend bool operator==(const SVGTransform& a, const SVGTransform& b);
80 inline bool operator==(const SVGTransform& a, const SVGTransform& b)
85 inline bool operator!=(const SVGTransform& a, const SVGTransform& b
    [all...]
SVGAnimateTransformElement.h 28 #include "SVGTransform.h"
54 SVGTransform parseTransformValue(const String&) const;
56 SVGTransform::SVGTransformType m_type;
60 SVGTransform m_toTransform;
61 SVGTransform m_fromTransform;
SVGTransform.cpp 24 #include "SVGTransform.h"
37 SVGTransform::SVGTransform()
43 SVGTransform::SVGTransform(SVGTransformType type)
49 SVGTransform::SVGTransform(const AffineTransform& matrix)
56 void SVGTransform::setMatrix(const AffineTransform& matrix)
63 void SVGTransform::updateMatrix()
66 // Spec: In case the matrix object is changed directly (i.e., without using the methods on the SVGTransform interface itself
    [all...]
SVGTransformList.cpp 28 #include "SVGTransform.h"
35 SVGTransform SVGTransformList::createSVGTransformFromMatrix(const SVGMatrix& matrix) const
40 SVGTransform SVGTransformList::consolidate()
44 return SVGTransform();
46 SVGTransform transform(matrix);
SVGTransformable.cpp 97 bool SVGTransformable::parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform& transform)
99 if (type == SVGTransform::SVG_TRANSFORM_UNKNOWN)
108 case SVGTransform::SVG_TRANSFORM_SKEWX:
111 case SVGTransform::SVG_TRANSFORM_SKEWY:
114 case SVGTransform::SVG_TRANSFORM_SCALE:
120 case SVGTransform::SVG_TRANSFORM_TRANSLATE:
126 case SVGTransform::SVG_TRANSFORM_ROTATE:
132 case SVGTransform::SVG_TRANSFORM_MATRIX:
154 type = SVGTransform::SVG_TRANSFORM_SKEWX;
156 type = SVGTransform::SVG_TRANSFORM_SKEWY
    [all...]
SVGTransformable.h 33 class SVGTransform;
47 static bool parseTransformValue(unsigned type, const UChar*& ptr, const UChar* end, SVGTransform&);
SVGAnimateTransformElement.cpp 40 #include "SVGTransform.h"
52 , m_type(SVGTransform::SVG_TRANSFORM_UNKNOWN)
87 m_type = SVGTransform::SVG_TRANSFORM_TRANSLATE;
89 m_type = SVGTransform::SVG_TRANSFORM_SCALE;
91 m_type = SVGTransform::SVG_TRANSFORM_ROTATE;
93 m_type = SVGTransform::SVG_TRANSFORM_SKEWX;
95 m_type = SVGTransform::SVG_TRANSFORM_SKEWY;
143 SVGTransform accumulatedTransform = SVGTransformDistance(m_fromTransform, m_toTransform).scaledDistance(repeat).addToSVGTransform(SVGTransform());
146 SVGTransform transform = SVGTransformDistance(m_fromTransform, m_toTransform).scaledDistance(percentage).addToS (…)
    [all...]
SVGSVGElement.h 40 class SVGTransform;
116 static SVGTransform createSVGTransform();
117 static SVGTransform createSVGTransformFromMatrix(const SVGMatrix&);
SVGSVGElement.idl 81 SVGTransform createSVGTransform();
82 SVGTransform createSVGTransformFromMatrix(in SVGMatrix matrix);
SVGTransform.idl 24 interface [Conditional=SVG] SVGTransform {
SVGSVGElement.cpp 45 #include "SVGTransform.h"
476 SVGTransform SVGSVGElement::createSVGTransform()
478 return SVGTransform(SVGTransform::SVG_TRANSFORM_MATRIX);
481 SVGTransform SVGSVGElement::createSVGTransformFromMatrix(const SVGMatrix& matrix)
483 return SVGTransform(static_cast<const AffineTransform&>(matrix));
  /external/webkit/Source/WebCore/svg/properties/
SVGTransformListPropertyTearOff.h 41 PassRefPtr<SVGPropertyTearOff<SVGTransform> > createSVGTransformFromMatrix(SVGPropertyTearOff<SVGMatrix>* matrix, ExceptionCode& ec)
48 return SVGPropertyTearOff<SVGTransform>::create(values.createSVGTransformFromMatrix(matrix->propertyReference()));
51 PassRefPtr<SVGPropertyTearOff<SVGTransform> > consolidate(ExceptionCode& ec)
65 RefPtr<SVGPropertyTearOff<SVGTransform> > wrapper = SVGPropertyTearOff<SVGTransform>::create(values.consolidate());
  /external/webkit/Source/WebCore/page/
DOMWindow.idl     [all...]
  /external/webkit/Source/WebCore/
Android.mk     [all...]

Completed in 1638 milliseconds