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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.cpp41 , m_nextSibling(0)
51 if (m_parent || m_previousSibling || m_nextSibling || m_firstChild || m_lastChild) {
57 m_parent->m_firstChild = m_nextSibling;
64 if (m_previousSibling->m_nextSibling == this)
65 m_previousSibling->m_nextSibling = m_nextSibling;
69 if (m_nextSibling) {
70 if (m_nextSibling->m_previousSibling == this)
71 m_nextSibling->m_previousSibling = oldPreviousSibling;
72 m_nextSibling
[all...]
H A DCounterNode.h60 CounterNode* nextSibling() const { return m_nextSibling; }
89 CounterNode* m_nextSibling; member in class:blink::CounterNode
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFrame.cpp57 m_previousSibling->m_nextSibling = frame;
60 if (m_nextSibling) {
61 m_nextSibling->m_previousSibling = frame;
62 swap(m_nextSibling, frame->m_nextSibling);
119 oldLast->m_nextSibling = child;
132 m_firstChild = child->m_nextSibling;
134 child->m_previousSibling->m_nextSibling = child->m_nextSibling;
139 child->m_nextSibling
[all...]
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildListMutationScope.cpp89 return isEmpty() || (m_lastAdded == child->previousSibling() && m_nextSibling == child->nextSibling());
103 m_nextSibling = child->nextSibling();
112 return isEmpty() || m_nextSibling == child;
126 m_nextSibling = child->nextSibling();
129 m_nextSibling = child->nextSibling();
141 RefPtrWillBeRawPtr<MutationRecord> record = MutationRecord::createChildList(m_target, addedNodes.release(), removedNodes.release(), m_previousSibling.release(), m_nextSibling.release());
153 ASSERT(!m_nextSibling);
166 visitor->trace(m_nextSibling);
H A DChildListMutationScope.h82 RefPtrWillBeMember<Node> m_nextSibling; member in class:blink::FINAL
H A DMutationRecord.cpp52 , m_nextSibling(nextSibling)
62 visitor->trace(m_nextSibling);
72 virtual Node* nextSibling() OVERRIDE { return m_nextSibling.get(); }
78 RefPtrWillBeMember<Node> m_nextSibling; member in class:blink::__anon11050::ChildListRecord
/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/inspector/
H A DDOMEditor.cpp241 , m_nextSibling(node->nextSibling())
276 visitor->trace(m_nextSibling);
285 RefPtrWillBeMember<Node> m_nextSibling; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFrame.h676 WebFrame* m_nextSibling; member in class:blink::WebFrame

Completed in 321 milliseconds