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

  /external/webkit/Source/WebCore/svg/
SVGSVGElement.cpp 25 #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(const QualifiedName& tagName, Document* doc
    [all...]
SVGDocument.idl 25 readonly attribute SVGSVGElement rootElement;
SVGDocument.h 32 class SVGSVGElement;
41 SVGSVGElement* rootElement() const;
SVGDocumentExtensions.h 40 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.
SVGElement.idl 28 readonly attribute SVGSVGElement ownerSVGElement;
SVGDocument.cpp 31 #include "SVGSVGElement.h"
43 SVGSVGElement* SVGDocument::rootElement() const
47 return static_cast<SVGSVGElement*>(elem);
101 return static_cast<SVGSVGElement*>(node)->isValid();
SVGSVGElement.h 45 class SVGSVGElement : public SVGStyledLocatableElement,
52 static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*);
56 // 'SVGSVGElement' functions
132 SVGSVGElement(const QualifiedName&, Document*);
133 virtual ~SVGSVGElement();
SVGDocumentExtensions.cpp 37 #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*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr
    [all...]
SVGTransformList.cpp 27 #include "SVGSVGElement.h"
37 return SVGSVGElement::createSVGTransformFromMatrix(matrix);
SVGElement.h 60 class SVGSVGElement;
71 SVGSVGElement* ownerSVGElement() const;
SVGSVGElement.idl 26 // TODO: Fix SVGSVGElement inheritance (css::DocumentCSS)!
28 interface [Conditional=SVG] SVGSVGElement : SVGElement,
SVGElement.cpp 45 #include "SVGSVGElement.h"
127 SVGSVGElement* SVGElement::ownerSVGElement() const
132 return static_cast<SVGSVGElement*>(n);
SVGLength.cpp 34 #include "SVGSVGElement.h"
332 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(viewportElement);
SVGStyledElement.cpp 43 #include "SVGSVGElement.h"
76 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(this);
SVGUseElement.cpp 43 #include "SVGSVGElement.h"
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGViewportContainer.cpp 31 #include "SVGSVGElement.h"
50 SVGSVGElement* svg = static_cast<SVGSVGElement*>(element);
66 SVGSVGElement* svg = static_cast<SVGSVGElement*>(node());
RenderSVGRoot.cpp 36 #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 and us
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.h 45 class SVGSVGElement;
49 static PassRefPtr<SMILTimeContainer> create(SVGSVGElement* owner) { return adoptRef(new SMILTimeContainer(owner)); }
69 SMILTimeContainer(SVGSVGElement* owner);
97 SVGSVGElement* m_ownerSVGElement;
SMILTimeContainer.cpp 36 #include "SVGSVGElement.h"
45 SMILTimeContainer::SMILTimeContainer(SVGSVGElement* owner)
SVGSMILElement.cpp 43 #include "SVGSVGElement.h"
179 SVGSVGElement* owner = ownerSVGElement();
    [all...]
  /external/webkit/Source/WebCore/svg/graphics/
SVGImage.cpp 48 #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/
FrameView.cpp 79 #include "SVGSVGElement.h"
    [all...]
DOMWindow.idl     [all...]
  /external/webkit/Source/WebCore/
Android.mk     [all...]

Completed in 334 milliseconds