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

  /external/chromium_org/third_party/WebKit/Source/web/
WebFrame.cpp 56 if (m_previousSibling) {
57 m_previousSibling->m_nextSibling = frame;
58 swap(m_previousSibling, frame->m_previousSibling);
61 m_nextSibling->m_previousSibling = frame;
118 child->m_previousSibling = oldLast;
134 child->m_previousSibling->m_nextSibling = child->m_nextSibling;
137 m_lastChild = child->m_previousSibling;
139 child->m_nextSibling->m_previousSibling = child->m_previousSibling;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 40 , m_previousSibling(0)
51 if (m_parent || m_previousSibling || m_nextSibling || m_firstChild || m_lastChild) {
59 m_parent->m_lastChild = m_previousSibling;
63 if (m_previousSibling) {
64 if (m_previousSibling->m_nextSibling == this)
65 m_previousSibling->m_nextSibling = m_nextSibling;
66 oldPreviousSibling = m_previousSibling;
67 m_previousSibling = 0;
70 if (m_nextSibling->m_previousSibling == this)
71 m_nextSibling->m_previousSibling = oldPreviousSibling
    [all...]
CounterNode.h 59 CounterNode* previousSibling() const { return m_previousSibling; }
88 CounterNode* m_previousSibling;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ChildListMutationScope.cpp 102 m_previousSibling = child->previousSibling();
125 m_previousSibling = child->previousSibling();
141 RefPtrWillBeRawPtr<MutationRecord> record = MutationRecord::createChildList(m_target, addedNodes.release(), removedNodes.release(), m_previousSibling.release(), m_nextSibling.release());
152 ASSERT(!m_previousSibling);
165 visitor->trace(m_previousSibling);
ChildListMutationScope.h 81 RefPtrWillBeMember<Node> m_previousSibling;
MutationRecord.cpp 51 , m_previousSibling(previousSibling)
61 visitor->trace(m_previousSibling);
71 virtual Node* previousSibling() OVERRIDE { return m_previousSibling.get(); }
77 RefPtrWillBeMember<Node> m_previousSibling;
  /external/chromium_org/third_party/WebKit/public/web/
WebFrame.h 675 WebFrame* m_previousSibling;

Completed in 275 milliseconds