HomeSort by relevance Sort by last modified time
    Searched defs:SVGElementInstance (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/svg/
SVGElementInstance.cpp 24 #include "SVGElementInstance.h"
43 SVGElementInstance::SVGElementInstance(SVGUseElement* useElement, PassRefPtr<SVGElement> originalElement)
62 SVGElementInstance::~SVGElementInstance()
71 removeAllChildrenInContainer<SVGElementInstance, SVGElementInstance>(this);
74 PassRefPtr<SVGElementInstanceList> SVGElementInstance::childNodes()
79 void SVGElementInstance::setShadowTreeElement(SVGElement* element)
85 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child
    [all...]
SVGElementInstance.h 38 // SVGElementInstance mimics Node, but without providing all its functionality
39 class SVGElementInstance : public TreeShared<SVGElementInstance>,
42 static PassRefPtr<SVGElementInstance> create(SVGUseElement* useElement, PassRefPtr<SVGElement> originalElement)
44 return adoptRef(new SVGElementInstance(useElement, originalElement));
47 virtual ~SVGElementInstance();
61 SVGElementInstance* parentNode() const { return parent(); }
64 SVGElementInstance* previousSibling() const { return m_previousSibling; }
65 SVGElementInstance* nextSibling() const { return m_nextSibling; }
67 SVGElementInstance* firstChild() const { return m_firstChild;
    [all...]

Completed in 569 milliseconds