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 45 static Node* nextSkippingChildren(const Node& current) { return traverseNextSkippingChildrenTemplate(current); }
46 static Node* nextSkippingChildren(const ContainerNode& current) { return traverseNextSkippingChildrenTemplate(current); }
47 static Node* nextSkippingChildren(const Node& current, const Node* stayWithin) { return traverseNextSkippingChildrenTemplate(current, stayWithin); }
48 static Node* nextSkippingChildren(const ContainerNode& current, const Node* stayWithin) { return traverseNextSkippingChildrenTemplate(current, stayWithin); }
ElementTraversal.h 66 static ElementType* nextSkippingChildren(const ContainerNode& current) { return nextSkippingChildrenTemplate(current); }
67 static ElementType* nextSkippingChildren(const Node& current) { return nextSkippingChildrenTemplate(current); }
68 static ElementType* nextSkippingChildren(const ContainerNode& current, const Node* stayWithin) { return nextSkippingChildrenTemplate(current, stayWithin); }
69 static ElementType* nextSkippingChildren(const Node& current, const Node* stayWithin) { return nextSkippingChildrenTemplate(current, stayWithin); }
134 node = NodeTraversal::nextSkippingChildren(*node);
144 node = NodeTraversal::nextSkippingChildren(*node, stayWithin);
271 Node* node = NodeTraversal::nextSkippingChildren(current);
273 node = NodeTraversal::nextSkippingChildren(*node);
281 Node* node = NodeTraversal::nextSkippingChildren(current, stayWithin);
283 node = NodeTraversal::nextSkippingChildren(*node, stayWithin)
    [all...]

Completed in 183 milliseconds