Searched refs:m_nextSibling (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.cpp38 , m_nextSibling(0)
48 if (m_parent || m_previousSibling || m_nextSibling || m_firstChild || m_lastChild) {
54 m_parent->m_firstChild = m_nextSibling;
61 if (m_previousSibling->m_nextSibling == this)
62 m_previousSibling->m_nextSibling = m_nextSibling;
66 if (m_nextSibling) {
67 if (m_nextSibling->m_previousSibling == this)
68 m_nextSibling->m_previousSibling = oldPreviousSibling;
69 m_nextSibling
[all...]
H A DCounterNode.h60 CounterNode* nextSibling() const { return m_nextSibling; }
89 CounterNode* m_nextSibling; member in class:WebCore::CounterNode
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildListMutationScope.cpp80 return isEmpty() || (m_lastAdded == child->previousSibling() && m_nextSibling == child->nextSibling());
94 m_nextSibling = child->nextSibling();
103 return isEmpty() || m_nextSibling == child;
117 m_nextSibling = child->nextSibling();
120 m_nextSibling = child->nextSibling();
132 RefPtr<MutationRecord> record = MutationRecord::createChildList(m_target, addedNodes.release(), removedNodes.release(), m_previousSibling.release(), m_nextSibling.release());
144 ASSERT(!m_nextSibling);
H A DMutationRecord.cpp52 , m_nextSibling(nextSibling)
62 virtual Node* nextSibling() OVERRIDE { return m_nextSibling.get(); }
68 RefPtr<Node> m_nextSibling; member in class:WebCore::__anon10171::ChildListRecord
H A DChildListMutationScope.h69 RefPtr<Node> m_nextSibling; member in class:WebCore::ChildListMutationAccumulator
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemUnknown.java59 child = child.m_nextSibling)
85 child = child.m_nextSibling)
H A DElemTemplateElement.java272 last.m_nextSibling = elem;
308 last.m_nextSibling = elem;
369 m_firstChild = childETE.m_nextSibling;
374 prev.m_nextSibling = childETE.m_nextSibling;
379 childETE.m_nextSibling = null;
408 prev.m_nextSibling = newChildElem;
416 newChildElem.m_nextSibling = oldChildElem.m_nextSibling;
417 oldChildElem.m_nextSibling
1318 ElemTemplateElement m_nextSibling; field in class:ElemTemplateElement
[all...]
H A DElemExtensionCall.java155 child = child.m_nextSibling)
181 child = child.m_nextSibling)
H A DElemApplyTemplates.java364 t != null; t = t.m_nextSibling)
H A DElemForEach.java380 t = t.m_nextSibling)
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java60 protected Node m_nextSibling = null; field in class:DOMBuilder
147 m_nextSibling = nextSibling;
157 return m_nextSibling;
182 if (currentNode == m_root && m_nextSibling != null)
183 currentNode.insertBefore(newNode, m_nextSibling);
191 if (m_nextSibling != null)
192 m_docFrag.insertBefore(newNode, m_nextSibling);
228 if (m_nextSibling != null)
229 m_doc.insertBefore(newNode, m_nextSibling);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameTree.h53 Frame* nextSibling() const { return m_nextSibling.get(); }
97 RefPtr<Frame> m_nextSibling; member in class:WebCore::FrameTree
H A DFrameTree.cpp99 oldLast->tree()->m_nextSibling = child;
105 ASSERT(!m_lastChild->tree()->m_nextSibling);
116 RefPtr<Frame>& newLocationForNext = m_firstChild == child ? m_firstChild : child->tree()->m_previousSibling->tree()->m_nextSibling;
117 Frame*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->tree()->m_nextSibling->tree()->m_previousSibling;
118 swap(newLocationForNext, child->tree()->m_nextSibling);
123 child->tree()->m_nextSibling = 0;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElementInstance.h70 SVGElementInstance* nextSibling() const { return m_nextSibling; }
173 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
189 SVGElementInstance* m_nextSibling; member in class:WebCore::SVGElementInstance
H A DSVGElementInstance.cpp95 , m_nextSibling(0)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMEditor.cpp213 , m_nextSibling(node->nextSibling())
246 RefPtr<Node> m_nextSibling; member in class:WebCore::DOMEditor::SetOuterHTMLAction

Completed in 181 milliseconds