HomeSort by relevance Sort by last modified time
    Searched defs:nextSkippingChildren (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeTraversal.h 46 static Node* nextSkippingChildren(const Node&);
47 static Node* nextSkippingChildren(const Node&, const Node* stayWithin);
108 inline Node* NodeTraversal::nextSkippingChildren(const Node& current)
115 inline Node* NodeTraversal::nextSkippingChildren(const Node& current, const Node* stayWithin)
ElementTraversal.h 78 static ElementType* nextSkippingChildren(const Node&);
79 static ElementType* nextSkippingChildren(const Node&, const Node* stayWithin);
130 node = NodeTraversal::nextSkippingChildren(*node);
140 node = NodeTraversal::nextSkippingChildren(*node, stayWithin);
302 inline ElementType* Traversal<ElementType>::nextSkippingChildren(const Node& current)
304 Node* node = NodeTraversal::nextSkippingChildren(current);
306 node = NodeTraversal::nextSkippingChildren(*node);
311 inline ElementType* Traversal<ElementType>::nextSkippingChildren(const Node& current, const Node* stayWithin)
313 Node* node = NodeTraversal::nextSkippingChildren(current, stayWithin);
315 node = NodeTraversal::nextSkippingChildren(*node, stayWithin)
    [all...]

Completed in 50 milliseconds