OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
60
SVGElement*
correspondingElement
() const { return m_element.get(); }
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
(), input)
[
all
...]
SVGElement.cpp
640
SVGElement* SVGElement::
correspondingElement
()
642
ASSERT(!hasSVGRareData() || !svgRareData()->
correspondingElement
() || containingShadowRoot());
643
return hasSVGRareData() ? svgRareData()->
correspondingElement
() : 0;
646
void SVGElement::setCorrespondingElement(SVGElement*
correspondingElement
)
648
ensureSVGRareData()->setCorrespondingElement(
correspondingElement
);
[
all
...]
Completed in 612 milliseconds