OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextIncludingPseudoSkippingChildren
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementTraversal.h
54
Element*
nextIncludingPseudoSkippingChildren
(const Node&, const Node* stayWithin = 0);
131
inline Element*
nextIncludingPseudoSkippingChildren
(const Node& current, const Node* stayWithin)
133
Node* node = NodeTraversal::
nextIncludingPseudoSkippingChildren
(current, stayWithin);
135
node = NodeTraversal::
nextIncludingPseudoSkippingChildren
(*node, stayWithin);
NodeTraversal.h
65
Node*
nextIncludingPseudoSkippingChildren
(const Node&, const Node* stayWithin = 0);
NodeTraversal.cpp
62
Node*
nextIncludingPseudoSkippingChildren
(const Node& current, const Node* stayWithin)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderCounter.cpp
99
Element* next = skipDescendants ? ElementTraversal::
nextIncludingPseudoSkippingChildren
(*self, stayWithin) : ElementTraversal::nextIncludingPseudo(*self, stayWithin);
101
next = skipDescendants ? ElementTraversal::
nextIncludingPseudoSkippingChildren
(*next, stayWithin) : ElementTraversal::nextIncludingPseudo(*next, stayWithin);
RenderListItem.cpp
135
current = ElementTraversal::
nextIncludingPseudoSkippingChildren
(*current, listNode);
Completed in 148 milliseconds