OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextIncludingPseudo
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementTraversal.h
53
Element*
nextIncludingPseudo
(const Node&, const Node* stayWithin = 0);
123
inline Element*
nextIncludingPseudo
(const Node& current, const Node* stayWithin)
125
Node* node = NodeTraversal::
nextIncludingPseudo
(current, stayWithin);
127
node = NodeTraversal::
nextIncludingPseudo
(*node, stayWithin);
NodeTraversal.h
64
Node*
nextIncludingPseudo
(const Node&, const Node* stayWithin = 0);
NodeTraversal.cpp
45
Node*
nextIncludingPseudo
(const Node& current, const Node* stayWithin)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListItem.cpp
130
current = ElementTraversal::
nextIncludingPseudo
(*current, listNode);
144
current = ElementTraversal::
nextIncludingPseudo
(*current, listNode);
164
// Use
nextIncludingPseudo
() here because the other list itself may actually
168
current = ElementTraversal::
nextIncludingPseudo
(*otherList);
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);
Completed in 508 milliseconds