HomeSort by relevance Sort by last modified time
    Searched refs:m_lastNodeInserted (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
ReplaceSelectionCommand.h 69 Node* lastLeafInserted() const { return m_lastNodeInserted->lastDescendant(); }
70 Node* pastLastLeaf() const { return m_lastNodeInserted ? NodeTraversal::next(lastLeafInserted()) : 0; }
74 RefPtr<Node> m_lastNodeInserted;
ReplaceSelectionCommand.cpp 333 m_lastNodeInserted = node;
340 if (m_lastNodeInserted == node)
341 m_lastNodeInserted = node->lastChild() ? node->lastChild() : NodeTraversal::nextSkippingChildren(node);
346 if (m_firstNodeInserted == node && m_lastNodeInserted == node) {
348 m_lastNodeInserted = 0;
351 else if (m_lastNodeInserted == node)
352 m_lastNodeInserted = NodeTraversal::previousSkippingChildren(m_lastNodeInserted.get());
359 if (m_lastNodeInserted == node)
360 m_lastNodeInserted = newNode
    [all...]

Completed in 24 milliseconds