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

  /external/webkit/Source/WebCore/rendering/
CounterNode.cpp 39 , 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...]
CounterNode.h 60 CounterNode* nextSibling() const { return m_nextSibling; }
89 CounterNode* m_nextSibling;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemUnknown.java 59 child = child.m_nextSibling)
85 child = child.m_nextSibling)
ElemTemplateElement.java 272 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 = null
    [all...]
ElemExtensionCall.java 155 child = child.m_nextSibling)
181 child = child.m_nextSibling)
ElemApplyTemplates.java 364 t != null; t = t.m_nextSibling)
ElemForEach.java 380 t = t.m_nextSibling)
  /external/webkit/Source/WebKit2/UIProcess/
WebFrameProxy.cpp 47 , 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...]
WebFrameProxy.h 76 WebFrameProxy* nextSibling() { return m_nextSibling; }
143 WebFrameProxy* m_nextSibling;
  /external/webkit/Source/WebCore/page/
FrameTree.h 49 Frame* nextSibling() const { return m_nextSibling.get(); }
84 RefPtr<Frame> m_nextSibling;
FrameTree.cpp 100 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/
DOMBuilder.java 60 protected Node m_nextSibling = null;
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/
ProfileNode.cpp 64 , 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() : "");
ProfileNode.h 76 ProfileNode* nextSibling() const { return m_nextSibling; }
77 void setNextSibling(ProfileNode* nextSibling) { m_nextSibling = nextSibling; }
156 ProfileNode* m_nextSibling;
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 72 SVGElementInstance* nextSibling() const { return m_nextSibling; }
151 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
165 SVGElementInstance* m_nextSibling;
SVGElementInstance.cpp 49 , m_nextSibling(0)

Completed in 1259 milliseconds