Searched refs:m_firstChild (Results 1 - 20 of 20) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMChildIterNodeList.java56 private int m_firstChild; field in class:DTMChildIterNodeList
79 m_firstChild=parentDTM.getFirstChild(parentHandle);
96 int handle=m_firstChild;
112 for (int handle=m_firstChild;
/external/webkit/Source/WebCore/rendering/
H A DRenderObjectChildList.h39 : m_firstChild(0)
44 RenderObject* firstChild() const { return m_firstChild; }
49 void setFirstChild(RenderObject* child) { m_firstChild = child; }
63 RenderObject* m_firstChild; member in class:WebCore::RenderObjectChildList
H A DCounterNode.cpp40 , m_firstChild(0)
72 if (CounterNode* next = m_firstChild)
107 ASSERT(m_parent->m_firstChild == this);
211 next = m_firstChild;
212 m_firstChild = newChild;
218 if (!newChild->m_firstChild || newChild->m_hasResetType) {
238 CounterNode* first = newChild->m_firstChild;
261 newChild->m_firstChild = 0;
271 ASSERT(!oldChild->m_firstChild);
284 ASSERT(m_firstChild
[all...]
H A DCounterNode.h61 CounterNode* firstChild() const { return m_firstChild; }
90 CounterNode* m_firstChild; member in class:WebCore::CounterNode
H A DInlineFlowBox.h42 , m_firstChild(0)
71 InlineBox* firstChild() const { checkConsistency(); return m_firstChild; }
282 InlineBox* m_firstChild; member in class:WebCore::InlineFlowBox
H A DInlineFlowBox.cpp89 if (!m_firstChild) {
90 m_firstChild = child;
174 if (child == m_firstChild)
175 m_firstChild = child->nextOnLine();
202 m_firstChild = 0;
1440 for (const InlineBox* child = m_firstChild; child; child = child->nextOnLine()) {
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemUnknown.java58 for (ElemTemplateElement child = m_firstChild; child != null;
84 for (ElemTemplateElement child = m_firstChild; child != null;
H A DElemTemplateElement.java264 if (null == m_firstChild)
266 m_firstChild = elem;
300 if (null == m_firstChild)
302 m_firstChild = elem;
324 return (null != m_firstChild);
368 if (childETE == m_firstChild)
369 m_firstChild = childETE.m_nextSibling;
411 if (m_firstChild == oldChildElem)
412 m_firstChild = newChildElem;
448 Node node = m_firstChild;
1407 ElemTemplateElement m_firstChild; field in class:ElemTemplateElement
[all...]
H A DElemExtensionCall.java154 for (ElemTemplateElement child = m_firstChild; child != null;
180 for (ElemTemplateElement child = m_firstChild; child != null;
H A DElemVariable.java422 varElem.m_firstChild = null;
437 varElem.m_firstChild = null;
H A DElemApplyTemplates.java363 for (ElemTemplateElement t = template.m_firstChild;
H A DElemForEach.java379 for (ElemTemplateElement t = this.m_firstChild; t != null;
/external/webkit/Source/WebCore/page/
H A DFrameTree.h51 Frame* firstChild() const { return m_firstChild.get(); }
86 RefPtr<Frame> m_firstChild; member in class:WebCore::FrameTree
H A DFrameTree.cpp102 m_firstChild = child;
117 RefPtr<Frame>& newLocationForNext = m_firstChild == child ? m_firstChild : child->tree()->m_previousSibling->tree()->m_nextSibling;
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.cpp49 , m_firstChild(0)
69 m_firstChild = 0;
206 m_firstChild = child;
213 WebFrameProxy*& newLocationForNext = m_firstChild == child ? m_firstChild : child->m_previousSibling->m_nextSibling;
246 for (WebFrameProxy* child = m_firstChild; child; child = child->m_nextSibling)
258 if (!m_firstChild)
262 for (WebFrameProxy* child = m_firstChild; child; child = child->m_nextSibling)
H A DWebFrameProxy.h78 WebFrameProxy* firstChild() { return m_firstChild; }
145 WebFrameProxy* m_firstChild; member in class:WebKit::WebFrameProxy
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h44 Node* firstChild() const { return m_firstChild; }
59 bool hasChildNodes() const { return m_firstChild; }
101 void setFirstChild(Node* child) { m_firstChild = child; }
119 Node* m_firstChild; member in class:WebCore::ContainerNode
140 , m_firstChild(0)
H A DContainerNode.cpp201 ASSERT(m_firstChild != nextChild);
205 ASSERT(m_firstChild == nextChild);
206 m_firstChild = newChild;
321 ASSERT(m_firstChild != next);
324 next = m_firstChild;
325 m_firstChild = child.get();
475 if (m_firstChild == oldChild)
476 m_firstChild = nextChild;
508 if (!m_firstChild)
524 while (RefPtr<Node> n = m_firstChild) {
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h74 SVGElementInstance* firstChild() const { return m_firstChild; }
146 bool hasChildNodes() const { return m_firstChild; }
148 void setFirstChild(SVGElementInstance* child) { m_firstChild = child; }
167 SVGElementInstance* m_firstChild; member in class:WebCore::SVGElementInstance
H A DSVGElementInstance.cpp50 , m_firstChild(0)

Completed in 552 milliseconds