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

/external/webkit/Source/WebCore/rendering/
H A DCounterNode.cpp39 , m_nextSibling(0)
62 while (!(next = current->m_nextSibling)) {
182 for (CounterNode* node = this; node; node = node->m_nextSibling) {
197 ASSERT(!newChild->m_nextSibling);
208 next = refChild->m_nextSibling;
209 refChild->m_nextSibling = newChild;
219 newChild->m_nextSibling = next;
240 newChild->m_nextSibling = first;
251 last->m_nextSibling = next;
256 for (next = first; ; next = next->m_nextSibling) {
[all...]
H A DCounterNode.h60 CounterNode* nextSibling() const { return m_nextSibling; }
89 CounterNode* m_nextSibling; member in class:WebCore::CounterNode
/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/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.cpp47 , m_nextSibling(0)
67 m_nextSibling = 0;
193 ASSERT(!child->m_nextSibling);
202 ASSERT(!oldLast->m_nextSibling);
204 oldLast->m_nextSibling = child;
213 WebFrameProxy*& newLocationForNext = m_firstChild == child ? m_firstChild : child->m_previousSibling->m_nextSibling;
214 WebFrameProxy*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->m_nextSibling->m_previousSibling;
215 swap(newLocationForNext, child->m_nextSibling);
218 child->m_nextSibling = 0;
246 for (WebFrameProxy* child = m_firstChild; child; child = child->m_nextSibling)
[all...]
H A DWebFrameProxy.h76 WebFrameProxy* nextSibling() { return m_nextSibling; }
143 WebFrameProxy* m_nextSibling; member in class:WebKit::WebFrameProxy
/external/webkit/Source/WebCore/page/
H A DFrameTree.h49 Frame* nextSibling() const { return m_nextSibling.get(); }
84 RefPtr<Frame> m_nextSibling; member in class:WebCore::FrameTree
H A DFrameTree.cpp100 oldLast->tree()->m_nextSibling = child;
106 ASSERT(!m_lastChild->tree()->m_nextSibling);
117 RefPtr<Frame>& newLocationForNext = m_firstChild == child ? m_firstChild : child->tree()->m_previousSibling->tree()->m_nextSibling;
118 Frame*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->tree()->m_nextSibling->tree()->m_previousSibling;
119 swap(newLocationForNext, child->tree()->m_nextSibling);
124 child->tree()->m_nextSibling = 0;
/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/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.cpp64 , m_nextSibling(0)
81 , m_nextSibling(0)
182 ProfileNode* next = m_nextSibling;
195 if (m_nextSibling)
196 return m_nextSibling;
303 m_nextSibling ? m_nextSibling->functionName().utf8().data() : "");
H A DProfileNode.h76 ProfileNode* nextSibling() const { return m_nextSibling; }
77 void setNextSibling(ProfileNode* nextSibling) { m_nextSibling = nextSibling; }
156 ProfileNode* m_nextSibling; member in class:JSC::ProfileNode
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h72 SVGElementInstance* nextSibling() const { return m_nextSibling; }
151 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
165 SVGElementInstance* m_nextSibling; member in class:WebCore::SVGElementInstance
H A DSVGElementInstance.cpp49 , m_nextSibling(0)

Completed in 183 milliseconds