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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTransformableContainer.cpp 51 SVGElement* correspondingElement = element->correspondingElement();
52 if (correspondingElement && correspondingElement->hasTagName(SVGNames::useTag))
53 useElement = toSVGUseElement(correspondingElement);
RenderSVGViewportContainer.cpp 68 SVGElement* correspondingElement = svg->correspondingElement();
69 if (correspondingElement && svg->isInShadowTree()) {
70 const HashSet<SVGElementInstance*>& instances = correspondingElement->instancesForElement();
77 ASSERT(instance->correspondingElement()->hasTagName(SVGNames::svgTag) || instance->correspondingElement()->hasTagName(SVGNames::symbolTag));
79 ASSERT(correspondingElement == instance->correspondingElement());
88 bool isSymbolElement = correspondingElement->hasTagName(SVGNames::symbolTag);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementRareData.h 71 SVGElement* correspondingElement() { return m_correspondingElement; }
72 void setCorrespondingElement(SVGElement* correspondingElement) { m_correspondingElement = correspondingElement; }
SVGElementInstance.h 59 SVGElement* correspondingElement() const { return m_element.get(); }
102 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), abort);
103 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), blur);
104 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), change);
105 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), click);
106 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), contextmenu);
107 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), dblclick);
108 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), error);
109 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), focus);
110 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), input)
    [all...]
SVGElement.cpp 579 SVGElement* SVGElement::correspondingElement()
581 ASSERT(!hasSVGRareData() || !svgRareData()->correspondingElement() || containingShadowRoot());
582 return hasSVGRareData() ? svgRareData()->correspondingElement() : 0;
585 void SVGElement::setCorrespondingElement(SVGElement* correspondingElement)
587 ensureSVGRareData()->setCorrespondingElement(correspondingElement);
759 ASSERT((*it)->correspondingElement() == this);
    [all...]

Completed in 2865 milliseconds