Searched refs:SVGSVGElement (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGSVGElement.cpp25 #include "SVGSVGElement.h"
57 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::xAttr, X, x)
58 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::yAttr, Y, y)
59 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::widthAttr, Width, width)
60 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::heightAttr, Height, height)
61 DEFINE_ANIMATED_BOOLEAN(SVGSVGElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
62 DEFINE_ANIMATED_PRESERVEASPECTRATIO(SVGSVGElement, SVGNames::preserveAspectRatioAttr, PreserveAspectRatio, preserveAspectRatio)
63 DEFINE_ANIMATED_RECT(SVGSVGElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
65 inline SVGSVGElement::SVGSVGElement(cons function in class:WebCore::SVGSVGElement
[all...]
H A DSVGDocument.idl25 readonly attribute SVGSVGElement rootElement;
H A DSVGDocument.h32 class SVGSVGElement;
41 SVGSVGElement* rootElement() const;
H A DSVGDocumentExtensions.h40 class SVGSVGElement;
49 void addTimeContainer(SVGSVGElement*);
50 void removeTimeContainer(SVGSVGElement*);
72 HashSet<SVGSVGElement*> m_timeContainers; // For SVG 1.2 support this will need to be made more general.
H A DSVGElement.idl28 readonly attribute SVGSVGElement ownerSVGElement;
H A DSVGDocument.cpp31 #include "SVGSVGElement.h"
43 SVGSVGElement* SVGDocument::rootElement() const
47 return static_cast<SVGSVGElement*>(elem);
101 return static_cast<SVGSVGElement*>(node)->isValid();
H A DSVGDocumentExtensions.cpp37 #include "SVGSVGElement.h"
56 void SVGDocumentExtensions::addTimeContainer(SVGSVGElement* element)
61 void SVGDocumentExtensions::removeTimeContainer(SVGSVGElement* element)
100 Vector<RefPtr<SVGSVGElement> > timeContainers;
102 Vector<RefPtr<SVGSVGElement> >::iterator end = timeContainers.end();
103 for (Vector<RefPtr<SVGSVGElement> >::iterator itr = timeContainers.begin(); itr != end; ++itr)
110 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
111 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr)
117 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
118 for (HashSet<SVGSVGElement*>
[all...]
H A DSVGSVGElement.h45 class SVGSVGElement : public SVGStyledLocatableElement, class in namespace:WebCore
52 static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*);
56 // 'SVGSVGElement' functions
132 SVGSVGElement(const QualifiedName&, Document*);
133 virtual ~SVGSVGElement();
H A DSVGTransformList.cpp27 #include "SVGSVGElement.h"
37 return SVGSVGElement::createSVGTransformFromMatrix(matrix);
H A DSVGElement.h60 class SVGSVGElement;
71 SVGSVGElement* ownerSVGElement() const;
H A DSVGSVGElement.idl26 // TODO: Fix SVGSVGElement inheritance (css::DocumentCSS)!
28 interface [Conditional=SVG] SVGSVGElement : SVGElement,
H A DSVGElement.cpp45 #include "SVGSVGElement.h"
127 SVGSVGElement* SVGElement::ownerSVGElement() const
132 return static_cast<SVGSVGElement*>(n);
H A DSVGLength.cpp34 #include "SVGSVGElement.h"
332 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(viewportElement);
H A DSVGStyledElement.cpp43 #include "SVGSVGElement.h"
76 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(this);
H A DSVGUseElement.cpp43 #include "SVGSVGElement.h"
900 RefPtr<SVGSVGElement> svgElement = SVGSVGElement::create(SVGNames::svgTag, document());
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGViewportContainer.cpp31 #include "SVGSVGElement.h"
50 SVGSVGElement* svg = static_cast<SVGSVGElement*>(element);
66 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
H A DRenderSVGRoot.cpp36 #include "SVGSVGElement.h"
86 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
97 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
116 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
222 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
231 // In the SVGImage case grab the SVGLength values off of SVGSVGElement an
[all...]
/external/webkit/Source/WebCore/svg/animation/
H A DSMILTimeContainer.h45 class SVGSVGElement;
49 static PassRefPtr<SMILTimeContainer> create(SVGSVGElement* owner) { return adoptRef(new SMILTimeContainer(owner)); }
69 SMILTimeContainer(SVGSVGElement* owner);
97 SVGSVGElement* m_ownerSVGElement;
H A DSMILTimeContainer.cpp36 #include "SVGSVGElement.h"
45 SMILTimeContainer::SMILTimeContainer(SVGSVGElement* owner)
H A DSVGSMILElement.cpp43 #include "SVGSVGElement.h"
179 SVGSVGElement* owner = ownerSVGElement();
/external/webkit/Source/WebCore/svg/graphics/
H A DSVGImage.cpp48 #include "SVGSVGElement.h"
111 SVGSVGElement* rootElement = static_cast<SVGDocument*>(frame->document())->rootElement();
123 SVGSVGElement* rootElement = static_cast<SVGDocument*>(frame->document())->rootElement();
135 SVGSVGElement* rootElement = static_cast<SVGDocument*>(frame->document())->rootElement();
160 SVGSVGElement* rootElement = static_cast<SVGDocument*>(m_page->mainFrame()->document())->rootElement();
171 SVGSVGElement* rootElement = static_cast<SVGDocument*>(m_page->mainFrame()->document())->rootElement();
/external/webkit/Source/WebCore/page/
H A DFrameView.cpp74 #include "SVGSVGElement.h"
1437 RefPtr<SVGSVGElement> svg = static_cast<SVGDocument*>(m_frame->document())->rootElement();
1447 RefPtr<SVGSVGElement> svg = static_cast<SVGSVGElement*>(element);
H A DDOMWindow.idl699 attribute SVGSVGElementConstructor SVGSVGElement;
/external/webkit/Source/WebCore/
H A DAndroid.mk1165 svg/SVGSVGElement.cpp \

Completed in 242 milliseconds