OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:referenceElement
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSVGElement.idl
54
NodeList getIntersectionList(SVGRect rect, SVGElement?
referenceElement
);
55
NodeList getEnclosureList(SVGRect rect, SVGElement?
referenceElement
);
SVGSVGElement.cpp
377
SVGElement*
referenceElement
, CheckIntersectionOrEnclosure mode) const
382
if (
referenceElement
) {
384
if (contains(
referenceElement
)) {
385
root =
referenceElement
;
386
} else if (!isDescendantOf(
referenceElement
)) {
401
PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::getIntersectionList(PassRefPtr<SVGRectTearOff> rect, SVGElement*
referenceElement
) const
405
return collectIntersectionOrEnclosureList(rect->target()->value(),
referenceElement
, CheckIntersection);
408
PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::getEnclosureList(PassRefPtr<SVGRectTearOff> rect, SVGElement*
referenceElement
) const
412
return collectIntersectionOrEnclosureList(rect->target()->value(),
referenceElement
, CheckEnclosure);
SVGSVGElement.h
93
PassRefPtrWillBeRawPtr<StaticNodeList> getIntersectionList(PassRefPtr<SVGRectTearOff>, SVGElement*
referenceElement
) const;
94
PassRefPtrWillBeRawPtr<StaticNodeList> getEnclosureList(PassRefPtr<SVGRectTearOff>, SVGElement*
referenceElement
) const;
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableElement.cpp
145
Node*
referenceElement
= lastBody() ? lastBody()->nextSibling() : 0;
147
insertBefore(body,
referenceElement
);
Completed in 425 milliseconds