Searched refs:correspondingElement (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementInstance.cpp41 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), abort);
42 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), blur);
43 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), change);
44 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), click);
45 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), contextmenu);
46 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), dblclick);
47 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), error);
48 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), focus);
49 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), input);
50 DEFINE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(SVGElementInstance, correspondingElement(), keydow
[all...]
H A DSVGElementInstance.h60 SVGElement* correspondingElement() const { return m_element.get(); } function in class:WebCore::SVGElementInstance
100 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), abort);
101 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), blur);
102 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), change);
103 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), click);
104 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), contextmenu);
105 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), dblclick);
106 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), error);
107 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), focus);
108 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), inpu
[all...]
H A DSVGElementRareData.h71 SVGElement* correspondingElement() { return m_correspondingElement; } function in class:WebCore::SVGElementRareData
72 void setCorrespondingElement(SVGElement* correspondingElement) { m_correspondingElement = correspondingElement; } argument
H A DSVGElementInstance.idl29 readonly attribute SVGElement correspondingElement;
H A DSVGUseElement.cpp274 SVGElement* element = targetInstance->correspondingElement();
297 text += String::format("SVGElementInstance this=%p, (parentNode=%s (%p), firstChild=%s (%p), correspondingElement=%s (%p), directUseElement=%s (%p), shadowTreeElement=%s (%p), id=%s)\n",
448 // single SVGElementInstance object, and the correspondingElement attribute on this SVGElementInstance object
471 ASSERT(m_targetElementInstance->correspondingElement() == target);
603 // contains three SVGElementInstance objects, a root SVGElementInstance object whose correspondingElement
605 // its correspondingElement that is an SVGRectElement object.
654 SVGElement* element = instance->correspondingElement();
686 RefPtr<Element> newChild = targetInstance->correspondingElement()->cloneElementWithChildren();
808 SVGElement* originalElement = target->correspondingElement();
825 SVGElement* originalElement = targetInstance->correspondingElement();
[all...]
H A DSVGElement.cpp640 SVGElement* SVGElement::correspondingElement() function in class:WebCore::SVGElement
642 ASSERT(!hasSVGRareData() || !svgRareData()->correspondingElement() || containingShadowRoot());
643 return hasSVGRareData() ? svgRareData()->correspondingElement() : 0;
646 void SVGElement::setCorrespondingElement(SVGElement* correspondingElement) argument
648 ensureSVGRareData()->setCorrespondingElement(correspondingElement);
827 ASSERT((*it)->correspondingElement() == this);
857 ASSERT((*it)->correspondingElement() == this);
1054 if (!correspondingElement())
1063 return document().ensureStyleResolver().styleForElement(correspondingElement(), style, DisallowStyleSharing);
H A DSVGElement.h114 SVGElement* correspondingElement();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTransformableContainer.cpp51 SVGElement* correspondingElement = element->correspondingElement(); local
52 if (correspondingElement && correspondingElement->hasTagName(SVGNames::useTag))
53 useElement = toSVGUseElement(correspondingElement);
H A DRenderSVGViewportContainer.cpp68 SVGElement* correspondingElement = svg->correspondingElement(); local
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/page/
H A DEventHandler.cpp1961 SVGElement* lastCorrespondingElement = m_lastInstanceUnderMouse->correspondingElement();
1971 ASSERT(instance->correspondingElement() == lastCorrespondingElement);

Completed in 300 milliseconds