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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocument.idl 25 readonly attribute SVGSVGElement rootElement;
SVGSVGElement.cpp 24 #include "core/svg/SVGSVGElement.h"
62 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::xAttr, X, x)
63 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::yAttr, Y, y)
64 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::widthAttr, Width, width)
65 DEFINE_ANIMATED_LENGTH(SVGSVGElement, SVGNames::heightAttr, Height, height)
66 DEFINE_ANIMATED_BOOLEAN(SVGSVGElement, SVGNames::externalResourcesRequiredAttr, ExternalResourcesRequired, externalResourcesRequired)
67 DEFINE_ANIMATED_PRESERVEASPECTRATIO(SVGSVGElement, SVGNames::preserveAspectRatioAttr, PreserveAspectRatio, preserveAspectRatio)
68 DEFINE_ANIMATED_RECT(SVGSVGElement, SVGNames::viewBoxAttr, ViewBox, viewBox)
70 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGSVGElement)
81 inline SVGSVGElement::SVGSVGElement(const QualifiedName& tagName, Document* doc
    [all...]
SVGDocument.h 31 class SVGSVGElement;
40 SVGSVGElement* rootElement() const;
SVGElement.idl 27 readonly attribute SVGSVGElement ownerSVGElement;
SVGSVGElement.idl 25 interface SVGSVGElement : SVGGraphicsElement {
72 SVGSVGElement implements SVGExternalResourcesRequired;
73 SVGSVGElement implements SVGFitToViewBox;
74 SVGSVGElement implements SVGZoomAndPan;
SVGDocumentExtensions.h 39 class SVGSVGElement;
49 void addTimeContainer(SVGSVGElement*);
50 void removeTimeContainer(SVGSVGElement*);
80 HashSet<SVGSVGElement*> m_timeContainers; // For SVG 1.2 support this will need to be made more general.
SVGSVGElement.h 42 class SVGSVGElement FINAL : public SVGGraphicsElement,
47 static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*);
55 // 'SVGSVGElement' functions
136 SVGSVGElement(const QualifiedName&, Document*);
137 virtual ~SVGSVGElement();
162 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGSVGElement)
181 inline SVGSVGElement* toSVGSVGElement(Node* node)
185 return static_cast<SVGSVGElement*>(node);
SVGDocumentExtensions.cpp 29 #include "core/svg/SVGSVGElement.h"
45 void SVGDocumentExtensions::addTimeContainer(SVGSVGElement* element)
50 void SVGDocumentExtensions::removeTimeContainer(SVGSVGElement* element)
88 Vector<RefPtr<SVGSVGElement> > timeContainers;
90 Vector<RefPtr<SVGSVGElement> >::iterator end = timeContainers.end();
91 for (Vector<RefPtr<SVGSVGElement> >::iterator itr = timeContainers.begin(); itr != end; ++itr)
97 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
98 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr)
104 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
105 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr
    [all...]
SVGDocument.cpp 31 #include "core/svg/SVGSVGElement.h"
44 SVGSVGElement* SVGDocument::rootElement() const
SVGTransformList.cpp 25 #include "core/svg/SVGSVGElement.h"
34 return SVGSVGElement::createSVGTransformFromMatrix(matrix);
SVGElement.h 45 class SVGSVGElement;
71 SVGSVGElement* ownerSVGElement() const;
SVGLengthContext.cpp 36 #include "core/svg/SVGSVGElement.h"
304 const SVGSVGElement* svg = static_cast<const SVGSVGElement*>(viewportElement);
SVGUseElement.cpp 45 #include "core/svg/SVGSVGElement.h"
764 RefPtr<SVGSVGElement> svgElement = SVGSVGElement::create(SVGNames::svgTag, referencedDocument());
    [all...]
SVGElement.cpp 48 #include "core/svg/SVGSVGElement.h"
471 SVGSVGElement* SVGElement::ownerSVGElement() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTimeContainer.h 43 class SVGSVGElement;
47 static PassRefPtr<SMILTimeContainer> create(SVGSVGElement* owner) { return adoptRef(new SMILTimeContainer(owner)); }
68 SMILTimeContainer(SVGSVGElement* owner);
93 SVGSVGElement* m_ownerSVGElement;
SMILTimeContainer.cpp 30 #include "core/svg/SVGSVGElement.h"
40 SMILTimeContainer::SMILTimeContainer(SVGSVGElement* owner)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 42 #include "core/svg/SVGSVGElement.h"
69 SVGSVGElement* svg = toSVGSVGElement(node());
71 Length intrinsicWidthAttribute = svg->intrinsicWidth(SVGSVGElement::IgnoreCSSProperties);
72 Length intrinsicHeightAttribute = svg->intrinsicHeight(SVGSVGElement::IgnoreCSSProperties);
154 SVGSVGElement* svg = toSVGSVGElement(node());
165 return resolveLengthAttributeForSVG(svg->intrinsicWidth(SVGSVGElement::IgnoreCSSProperties), style()->effectiveZoom(), containingBlock()->availableLogicalWidth(), view());
177 SVGSVGElement* svg = toSVGSVGElement(node());
188 Length height = svg->intrinsicHeight(SVGSVGElement::IgnoreCSSProperties);
228 SVGSVGElement* svg = toSVGSVGElement(node());
269 SVGSVGElement* svg = toSVGSVGElement(node())
    [all...]
RenderSVGViewportContainer.cpp 30 #include "core/svg/SVGSVGElement.h"
62 SVGSVGElement* svg = toSVGSVGElement(element);
134 SVGSVGElement* svg = toSVGSVGElement(node());
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 42 #include "core/svg/SVGSVGElement.h"
71 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
89 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
236 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
255 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
266 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
277 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
297 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
309 SVGSVGElement* rootElement = toSVGDocument(frame->document())->rootElement();
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_svg.target.darwin-arm.mk 206 third_party/WebKit/Source/core/svg/SVGSVGElement.cpp \
webcore_svg.target.darwin-mips.mk 206 third_party/WebKit/Source/core/svg/SVGSVGElement.cpp \
webcore_svg.target.darwin-x86.mk 206 third_party/WebKit/Source/core/svg/SVGSVGElement.cpp \
webcore_svg.target.linux-arm.mk 206 third_party/WebKit/Source/core/svg/SVGSVGElement.cpp \
webcore_svg.target.linux-mips.mk 206 third_party/WebKit/Source/core/svg/SVGSVGElement.cpp \
webcore_svg.target.linux-x86.mk 206 third_party/WebKit/Source/core/svg/SVGSVGElement.cpp \

Completed in 307 milliseconds

1 2