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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTransformableContainer.cpp 84 SVGElement* correspondingElement = element->correspondingElement();
85 if (isSVGUseElement(correspondingElement))
86 useElement = toSVGUseElement(correspondingElement);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementRareData.h 65 SVGElement* correspondingElement() { return m_correspondingElement.get(); }
66 void setCorrespondingElement(SVGElement* correspondingElement) { m_correspondingElement = correspondingElement; }
SVGElement.cpp 94 if (SVGElement* element = correspondingElement())
101 if (SVGElement* element = correspondingElement())
555 SVGElement* SVGElement::correspondingElement()
557 ASSERT(!hasSVGRareData() || !svgRareData()->correspondingElement() || containingShadowRoot());
558 return hasSVGRareData() ? svgRareData()->correspondingElement() : 0;
570 void SVGElement::setCorrespondingElement(SVGElement* correspondingElement)
572 ensureSVGRareData()->setCorrespondingElement(correspondingElement);
    [all...]

Completed in 103 milliseconds