Home
last modified time | relevance | path

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

/external/webkit/WebCore/editing/
DJoinTextNodesCommand.cpp34 : SimpleEditCommand(text1->document()), m_text1(text1), m_text2(text2) in JoinTextNodesCommand()
36 ASSERT(m_text1); in JoinTextNodesCommand()
38 ASSERT(m_text1->nextSibling() == m_text2); in JoinTextNodesCommand()
39 ASSERT(m_text1->length() > 0); in JoinTextNodesCommand()
45 if (m_text1->nextSibling() != m_text2) in doApply()
53 m_text2->insertData(0, m_text1->data(), ec); in doApply()
57 m_text1->remove(ec); in doApply()
62 if (m_text1->parentNode()) in doUnapply()
71 parent->insertBefore(m_text1.get(), m_text2.get(), ec); in doUnapply()
75 m_text2->deleteData(0, m_text1->length(), ec); in doUnapply()
DSplitTextNodeCommand.cpp71 m_text1 = prefixTextNode.release(); in doApply()
76 if (!m_text1 || !m_text1->isContentEditable()) in doUnapply()
79 ASSERT(m_text1->document() == document()); in doUnapply()
81 RefPtr<Text> prefixTextNode = m_text1.release(); in doUnapply()
DSplitTextNodeCommand.h48 RefPtr<Text> m_text1; variable
DJoinTextNodesCommand.h48 RefPtr<Text> m_text1; variable
/external/webkit/WebCore/
DChangeLog-2005-08-2347376 (SplitTextNodeCommandImpl::SplitTextNodeCommandImpl): m_text1 member variable