Searched refs:referenceElement (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGSVGElement.cpp | 329 …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()
|
D | SVGSVGElement.h | 107 PassRefPtr<NodeList> getIntersectionList(const SVGRect&, SVGElement* referenceElement) const; 108 PassRefPtr<NodeList> getEnclosureList(const SVGRect&, SVGElement* referenceElement) const;
|
D | SVGSVGElement.idl | 52 [Default=Undefined] optional SVGElement referenceElement); 54 [Default=Undefined] optional SVGElement referenceElement);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLTableElement.cpp | 154 Node* referenceElement = lastBody() ? lastBody()->nextSibling() : 0; in createTBody() local 156 insertBefore(body, referenceElement); in createTBody()
|