Home
last modified time | relevance | path

Searched refs:m_refChild (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/editing/
DInsertNodeBeforeCommand.cpp36 , m_refChild(refChild) in InsertNodeBeforeCommand()
40 ASSERT(m_refChild); in InsertNodeBeforeCommand()
41 ASSERT(m_refChild->parentNode()); in InsertNodeBeforeCommand()
43 ASSERT(m_refChild->parentNode()->isContentEditable() || !m_refChild->parentNode()->attached()); in InsertNodeBeforeCommand()
48 Node* parent = m_refChild->parentNode(); in doApply()
53 parent->insertBefore(m_insertChild.get(), m_refChild.get(), ec); in doApply()
DRemoveNodeCommand.cpp49 m_refChild = m_node->nextSibling(); in doApply()
58 RefPtr<Node> refChild = m_refChild.release(); in doUnapply()
DRemoveNodeCommand.h48 RefPtr<Node> m_refChild; variable
DInsertNodeBeforeCommand.h47 RefPtr<Node> m_refChild; variable
/external/webkit/WebCore/
DChangeLog-2009-06-1660280 Don't initialize m_refChild here; rather do it in doApply.