Searched defs:firstChild (Results 1 - 25 of 43) sorted by relevance

12

/external/webkit/Source/WebCore/editing/
H A DSplitTextNodeContainingElementCommand.cpp57 Node* firstChild = parent->firstChild(); local
58 if (!firstChild || !firstChild->isElementNode())
60 parent = static_cast<Element*>(firstChild);
H A DReplaceSelectionCommand.cpp71 Node* firstChild() const;
138 if (!m_fragment->firstChild())
171 if (!m_fragment->firstChild())
185 return (!m_fragment || !m_fragment->firstChild()) && !m_hasInterchangeNewlineAtStart && !m_hasInterchangeNewlineAtEnd;
188 Node *ReplacementFragment::firstChild() const function in class:WebCore::ReplacementFragment
190 return m_fragment ? m_fragment->firstChild() : 0;
203 while (RefPtr<Node> n = node->firstChild()) {
279 while (RefPtr<Node> node = holder->firstChild()) {
291 for (Node* node = holder->firstChild(); node; node = node->traverseNextNode(holder))
304 Node* node = container->firstChild();
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityScrollView.h63 virtual AccessibilityObject* firstChild() const { return webAreaObject(); } function in class:WebCore::AccessibilityScrollView
/external/webkit/Source/WebCore/rendering/
H A DRenderObjectChildList.h44 RenderObject* firstChild() const { return m_firstChild; } function in class:WebCore::RenderObjectChildList
48 // will need to manipulate firstChild or lastChild directly.
H A DCounterNode.h61 CounterNode* firstChild() const { return m_firstChild; } function in class:WebCore::CounterNode
H A DInlineFlowBox.h71 InlineBox* firstChild() const { checkConsistency(); return m_firstChild; } function in class:WebCore::InlineFlowBox
85 for (InlineBox* child = firstChild(); child; child = child->next())
H A DRenderListItem.cpp149 RenderObject* firstChild = curr->firstChild(); local
150 if (!firstChild)
154 for (RenderObject* currChild = firstChild; currChild; currChild = currChild->nextSibling()) {
190 RenderObject* result = parent->firstChild();
H A DRenderFlexibleBox.cpp564 bool firstChild = true; local
569 if (firstChild) {
570 firstChild = false;
811 bool firstChild = true; local
816 if (firstChild) {
817 firstChild = false;
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h44 Node* firstChild() const { return m_firstChild; } function in class:WebCore::ContainerNode
159 inline Node* Node::firstChild() const function in class:WebCore::Node
163 return toContainerNode(this)->firstChild();
H A DTreeWalker.cpp73 Node* TreeWalker::firstChild(ScriptState* state) function in class:WebCore::TreeWalker
75 for (RefPtr<Node> node = m_current->firstChild(); node; ) {
84 if (node->firstChild()) {
85 node = node->firstChild();
191 if (sibling->firstChild()) {
192 sibling = sibling->firstChild();
256 while (Node* firstChild = node->firstChild()) {
257 node = firstChild;
H A DTreeWalker.h48 Node* firstChild(ScriptState*);
58 Node* firstChild() { return firstChild(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
/external/webkit/Source/WebCore/page/
H A DFrameTree.h51 Frame* firstChild() const { return m_firstChild.get(); } function in class:WebCore::FrameTree
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java232 public VirtualGroupEntry(FileSystemEntry firstChild, File parent) { argument
236 groupEntries.insert(firstChild.file.getName(), firstChild);
/external/webkit/Source/WebCore/platform/gtk/
H A DPopupMenuGtk.cpp208 GList* firstChild = currentChild; local
219 } while (currentChild != firstChild);
/external/skia/src/xml/
H A DSkXMLWriter.cpp62 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; local
63 if (firstChild)
69 return firstChild;
/external/webkit/Source/WebCore/inspector/front-end/
H A DElementsTreeOutline.js119 var node = this.rootDOMNode.firstChild;
455 listItemElement.insertBefore(this.selectionElement, listItemElement.firstChild);
539 var child = node.firstChild;
630 this.expandAllButtonElement = item.listItemElement.firstChild;
833 var attr = container.firstChild;
879 for (var child = node.firstChild; child; child = child.nextSibling)
969 var child = this.listItemElement.firstChild;
999 var child = this.listItemElement.firstChild;
1083 var parseElement = parseContainerElement.firstChild;
1183 textNode = this.representedObject.firstChild;
1383 var firstChild = node.firstChild; variable
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp108 WebNode WebNode::firstChild() const function in class:WebKit::WebNode
110 return WebNode(m_private->firstChild());
H A DWebAccessibilityObject.cpp141 WebAccessibilityObject WebAccessibilityObject::firstChild() const function in class:WebKit::WebAccessibilityObject
147 return WebAccessibilityObject(m_private->firstChild());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.h78 WebFrameProxy* firstChild() { return m_firstChild; } function in class:WebKit::WebFrameProxy
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java53 private NestedMapData firstChild = null; field in class:NestedMapData
102 NestedMapData curr = sym.firstChild;
119 sym.firstChild = data;
138 parent.firstChild = nextSibling;
348 NestedMapData curr = sym.firstChild;
517 for (NestedMapData child = firstChild; child != null; child = child.nextSibling) {
604 return new ChildrenIterator(followSymLinkToTheBitterEnd().firstChild);
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.h101 ProfileNode* firstChild() const { return m_children.size() ? m_children.first().get() : 0; } function in class:JSC::ProfileNode
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h74 SVGElementInstance* firstChild() const { return m_firstChild; } function in class:WebCore::SVGElementInstance
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h145 virtual HRESULT STDMETHODCALLTYPE firstChild(
369 virtual HRESULT STDMETHODCALLTYPE firstChild( function in class:DOMDocument
370 /* [retval][out] */ IDOMNode** result) { return DOMNode::firstChild(result); }
600 virtual HRESULT STDMETHODCALLTYPE firstChild( function in class:DOMElement
601 /* [retval][out] */ IDOMNode** result) { return DOMNode::firstChild(result); }
/external/webkit/Source/WebCore/html/
H A DHTMLElement.cpp292 Node* firstChild = node->firstChild(); local
293 return firstChild && !firstChild->nextSibling();
298 return hasOneChild(node) && node->firstChild()->isTextNode();
303 if (!fragment->firstChild()) {
309 static_cast<Text*>(element->firstChild())->setData(static_cast<Text*>(fragment->firstChild())->data(), ec);
314 element->replaceChild(fragment, element->firstChild(), ec);
325 static_cast<Text*>(element->firstChild())
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.cpp117 WebCore::Frame* child = pFrame->tree()->firstChild();
128 WebCore::Frame* firstChild; local
129 if (item && (firstChild = child->tree()->firstChild()))
130 frameQueue.append(firstChild);

Completed in 510 milliseconds

12