Home
last modified time | relevance | path

Searched refs:referenceElement (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGSVGElement.cpp329 …collectIntersectionOrEnclosureList(const SVGRect& rect, SVGElement* referenceElement, CollectInter… in collectIntersectionOrEnclosureList() argument
332 Element* element = ElementTraversal::next(*(referenceElement ? referenceElement : this)); in collectIntersectionOrEnclosureList()
345 element = ElementTraversal::next(*element, referenceElement ? referenceElement : this); in collectIntersectionOrEnclosureList()
350 …deList> SVGSVGElement::getIntersectionList(const SVGRect& rect, SVGElement* referenceElement) const in getIntersectionList()
352 return collectIntersectionOrEnclosureList(rect, referenceElement, CollectIntersectionList); in getIntersectionList()
355 …<NodeList> SVGSVGElement::getEnclosureList(const SVGRect& rect, SVGElement* referenceElement) const in getEnclosureList()
357 return collectIntersectionOrEnclosureList(rect, referenceElement, CollectEnclosureList); in getEnclosureList()
DSVGSVGElement.h107 PassRefPtr<NodeList> getIntersectionList(const SVGRect&, SVGElement* referenceElement) const;
108 PassRefPtr<NodeList> getEnclosureList(const SVGRect&, SVGElement* referenceElement) const;
DSVGSVGElement.idl52 [Default=Undefined] optional SVGElement referenceElement);
54 [Default=Undefined] optional SVGElement referenceElement);
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTableElement.cpp154 Node* referenceElement = lastBody() ? lastBody()->nextSibling() : 0; in createTBody() local
156 insertBefore(body, referenceElement); in createTBody()