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 44 Node* nextSkippingChildren(const Node&);
45 Node* nextSkippingChildren(const Node&, const Node* stayWithin);
46 Node* nextSkippingChildren(const ContainerNode&);
47 Node* nextSkippingChildren(const ContainerNode&, const Node* stayWithin);
103 inline Node* nextSkippingChildren(const Node& current) { return traverseNextSkippingChildrenTemplate(current); }
104 inline Node* nextSkippingChildren(const ContainerNode& current) { return traverseNextSkippingChildrenTemplate(current); }
115 inline Node* nextSkippingChildren(const Node& current, const Node* stayWithin) { return traverseNextSkippingChildrenTemplate(current, stayWithin); }
116 inline Node* nextSkippingChildren(const ContainerNode& current, const Node* stayWithin) { return traverseNextSkippingChildrenTemplate(current, stayWithin); }
ElementTraversal.h 46 Element* nextSkippingChildren(const Node&);
47 Element* nextSkippingChildren(const Node&, const Node* stayWithin);
48 Element* nextSkippingChildren(const ContainerNode&);
49 Element* nextSkippingChildren(const ContainerNode&, const Node* stayWithin);
76 node = NodeTraversal::nextSkippingChildren(*node);
87 node = NodeTraversal::nextSkippingChildren(*node, stayWithin);
96 Node* node = NodeTraversal::nextSkippingChildren(current);
98 node = NodeTraversal::nextSkippingChildren(*node);
101 inline Element* nextSkippingChildren(const ContainerNode& current) { return traverseNextElementSkippingChildrenTemplate(current); }
102 inline Element* nextSkippingChildren(const Node& current) { return traverseNextElementSkippingChildrenTemplate(current);
    [all...]

Completed in 29 milliseconds