nextNode 348 Source/core/dom/ContainerNode.h PassRefPtr<Node> nextNode() nextNode 47 Source/core/dom/ContainerNodeAlgorithms.cpp while (RefPtr<Node> child = snapshot.nextNode()) { nextNode 81 Source/core/dom/ContainerNodeAlgorithms.cpp while (RefPtr<Node> child = snapshot.nextNode()) { nextNode 46 Source/core/dom/NodeIterator.h PassRefPtr<Node> nextNode(ExceptionState&); nextNode 178 Source/core/dom/NodeRenderingTraversal.cpp Node* nextNode = nextSibling(node); nextNode 180 Source/core/dom/NodeRenderingTraversal.cpp if (parentNode && parentNode->isElementNode() && !nextNode) { nextNode 188 Source/core/dom/NodeRenderingTraversal.cpp return nextNode; nextNode 213 Source/core/dom/NodeRenderingTraversal.cpp if (Node* nextNode = pseudoAwareNextSibling(node)) nextNode 214 Source/core/dom/NodeRenderingTraversal.cpp return nextNode; nextNode 218 Source/core/dom/NodeRenderingTraversal.cpp if (Node* nextNode = pseudoAwareNextSibling(parentNode)) nextNode 219 Source/core/dom/NodeRenderingTraversal.cpp return nextNode; nextNode 64 Source/core/dom/Text.cpp RefPtr<Node> nextNode(NodeTraversal::nextPostOrder(*this)); nextNode 66 Source/core/dom/Text.cpp return nextNode.release(); nextNode 54 Source/core/dom/TreeWalker.h Node* nextNode(ExceptionState&); nextNode 424 Source/core/editing/DeleteSelectionCommand.cpp RefPtr<Node> nextNode = NodeTraversal::next(*node); nextNode 426 Source/core/editing/DeleteSelectionCommand.cpp nextNode = NodeTraversal::nextSkippingChildren(*node); nextNode 433 Source/core/editing/DeleteSelectionCommand.cpp node = nextNode; nextNode 512 Source/core/editing/DeleteSelectionCommand.cpp RefPtr<Node> nextNode = NodeTraversal::nextSkippingChildren(*node); nextNode 517 Source/core/editing/DeleteSelectionCommand.cpp node = nextNode.get(); nextNode 589 Source/core/editing/VisiblePosition.cpp Node* nextNode = next.deprecatedNode(); nextNode 605 Source/core/editing/VisiblePosition.cpp bool nextIsInSameEditableElement = nextNode && editableRootForPosition(next) == editingRoot; nextNode 617 Source/core/editing/VisiblePosition.cpp bool nextIsOutsideOriginalBlock = !nextNode->isDescendantOf(originalBlock) && nextNode != originalBlock; nextNode 108 Source/core/editing/VisibleUnits.cpp Node* nextNode = nextLeafWithSameEditability(node, editableType); nextNode 109 Source/core/editing/VisibleUnits.cpp while (nextNode && (!nextNode->renderer() || inSameLine(VisiblePosition(firstPositionInOrBeforeNode(nextNode)), visiblePosition))) nextNode 110 Source/core/editing/VisibleUnits.cpp nextNode = nextLeafWithSameEditability(nextNode, ContentIsEditable); nextNode 112 Source/core/editing/VisibleUnits.cpp while (nextNode && !nextNode->isShadowRoot()) { nextNode 113 Source/core/editing/VisibleUnits.cpp if (highestEditableRoot(firstPositionInOrBeforeNode(nextNode), editableType) != highestRoot) nextNode 117 Source/core/editing/VisibleUnits.cpp pos = createLegacyEditingPosition(nextNode, caretMinOffset(nextNode)); nextNode 122 Source/core/editing/VisibleUnits.cpp nextNode = nextLeafWithSameEditability(nextNode, editableType); nextNode 984 Source/core/editing/markup.cpp RefPtr<Node> nextNode; nextNode 985 Source/core/editing/markup.cpp for (RefPtr<Node> node = fragment->firstChild(); node; node = nextNode) { nextNode 986 Source/core/editing/markup.cpp nextNode = node->nextSibling(); nextNode 990 Source/core/editing/markup.cpp nextNode = firstChild; nextNode 2558 Source/core/html/HTMLMediaElement.cpp RefPtr<Node> nextNode = m_nextChildNodeToConsider; nextNode 2563 Source/core/html/HTMLMediaElement.cpp m_nextChildNodeToConsider = nextNode; nextNode 1508 Source/core/html/parser/HTMLTreeBuilder.cpp HTMLElementStack::ElementRecord* nextNode = node->next(); nextNode 1513 Source/core/html/parser/HTMLTreeBuilder.cpp node = nextNode; nextNode 1515 Source/core/html/parser/HTMLTreeBuilder.cpp nextNode = node->next(); // Save node->next() for the next iteration in case node is deleted in 9.5.