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 62 SVGElement* correspondingElement() { return m_correspondingElement.get(); }
63 void setCorrespondingElement(SVGElement* correspondingElement) { m_correspondingElement = correspondingElement; }
SVGElement.cpp 113 if (SVGElement* element = correspondingElement())
120 if (SVGElement* element = correspondingElement())
616 SVGElement* SVGElement::correspondingElement()
618 ASSERT(!hasSVGRareData() || !svgRareData()->correspondingElement() || containingShadowRoot());
619 return hasSVGRareData() ? svgRareData()->correspondingElement() : 0;
631 void SVGElement::setCorrespondingElement(SVGElement* correspondingElement)
633 ensureSVGRareData()->setCorrespondingElement(correspondingElement);
    [all...]

Completed in 80 milliseconds