lastDescendant 101 Source/core/dom/LiveNodeListBase.h static Node* lastDescendant(const ContainerNode&); lastDescendant 139 Source/core/dom/LiveNodeListBase.h inline Node* LiveNodeListBase::lastDescendant(const ContainerNode& node) lastDescendant 149 Source/core/dom/LiveNodeListBase.h return onlyIncludeDirectChildren ? rootNode.lastChild() : lastDescendant(rootNode); lastDescendant 208 Source/core/dom/Node.h Node& lastDescendant() const; lastDescendant 519 Source/core/editing/DeleteSelectionCommand.cpp Node& n = node->lastDescendant(); lastDescendant 1465 Source/core/editing/ReplaceSelectionCommand.cpp m_endOfInsertedContent = lastPositionInOrAfterNode(&node->lastDescendant()); lastDescendant 69 Source/core/editing/ReplaceSelectionCommand.h Node* lastLeafInserted() const { return m_lastNodeInserted ? &m_lastNodeInserted->lastDescendant() : 0; } lastDescendant 70 Source/core/editing/ReplaceSelectionCommand.h Node* pastLastLeaf() const { return m_lastNodeInserted ? NodeTraversal::next(m_lastNodeInserted->lastDescendant()) : 0; } lastDescendant 999 Source/core/editing/VisibleUnits.cpp node = child ? child : &node->lastDescendant(); lastDescendant 63 Source/core/rendering/CounterNode.h CounterNode* lastDescendant() const; lastDescendant 434 Source/core/rendering/RenderCounter.cpp for (RefPtr<CounterNode> child = node->lastDescendant(); child && child != node; child = previous) {