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

  /external/webkit/Source/WebCore/svg/
SVGElementInstance.cpp 25 #include "SVGElementInstance.h"
44 SVGElementInstance::SVGElementInstance(SVGUseElement* correspondingUseElement, SVGUseElement* directUseElement, PassRefPtr<SVGElement> originalElement)
64 SVGElementInstance::~SVGElementInstance()
73 removeAllChildrenInContainer<SVGElementInstance, SVGElementInstance>(this);
76 PassRefPtr<SVGElementInstanceList> SVGElementInstance::childNodes()
81 void SVGElementInstance::setShadowTreeElement(SVGElement* element)
87 void SVGElementInstance::appendChild(PassRefPtr<SVGElementInstance> child
    [all...]
SVGElementInstance.h 39 // SVGElementInstance mimics Node, but without providing all its functionality
40 class SVGElementInstance : public TreeShared<SVGElementInstance>,
43 static PassRefPtr<SVGElementInstance> create(SVGUseElement* correspondingUseElement, SVGUseElement* directUseElement, PassRefPtr<SVGElement> originalElement)
45 return adoptRef(new SVGElementInstance(correspondingUseElement, directUseElement, originalElement));
48 virtual ~SVGElementInstance();
68 SVGElementInstance* parentNode() const { return parent(); }
71 SVGElementInstance* previousSibling() const { return m_previousSibling; }
72 SVGElementInstance* nextSibling() const { return m_nextSibling; }
74 SVGElementInstance* firstChild() const { return m_firstChild;
    [all...]

Completed in 1796 milliseconds