Home | History | Annotate | Download | only in dom

Lines Matching defs:nextSibling

93     static ElementType* nextSibling(const Node&);
95 static ElementType* nextSibling(const Node&, MatchFunc);
151 node = node->nextSibling();
161 element = Traversal<ElementType>::nextSibling(*element);
375 inline ElementType* Traversal<ElementType>::nextSibling(const Node& current)
377 Node* node = current.nextSibling();
379 node = node->nextSibling();
385 inline ElementType* Traversal<ElementType>::nextSibling(const Node& current, MatchFunc isMatch)
387 ElementType* element = Traversal<ElementType>::nextSibling(current);
389 element = Traversal<ElementType>::nextSibling(*element);