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

12

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSplitTextNodeContainingElementCommand.cpp57 Node* firstChild = parent->firstChild(); local
58 if (!firstChild || !firstChild->isElementNode())
60 parent = toElement(firstChild);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderMedia.h40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::RenderMedia
H A DRenderObjectChildList.h43 RenderObject* firstChild() const { return m_firstChild; } function in class:WebCore::RenderObjectChildList
47 // will need to manipulate firstChild or lastChild directly.
H A DRenderTableCol.h40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::FINAL
51 bool isTableColumnGroupWithColumnChildren() { return firstChild(); }
H A DCounterNode.h61 CounterNode* firstChild() const { return m_firstChild; } function in class:WebCore::CounterNode
H A DRenderInline.h40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::RenderInline
H A DRenderTableRow.h39 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::FINAL
H A DRenderFrameSet.h62 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::FINAL
H A DInlineFlowBox.h80 InlineBox* firstChild() const { checkConsistency(); return m_firstChild; } function in class:WebCore::InlineFlowBox
94 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
176 float placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild, float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing, GlyphOverflowAndFallbackFontsMap&);
H A DRenderListItem.cpp227 RenderObject* firstChild = curr->firstChild(); local
228 if (!firstChild)
232 for (RenderObject* currChild = firstChild; currChild; currChild = currChild->nextSibling()) {
268 RenderObject* result = parent->firstChild();
304 if (markerParent && markerParent->isAnonymousBlock() && !markerParent->firstChild() && !toRenderBlock(markerParent)->continuation())
H A DRenderTableSection.h68 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNodeTest.cpp45 RefPtr<TestTree> firstChild = TestTree::create(); local
48 root->appendChild(firstChild.get());
49 ASSERT_EQ(root->firstChild(), firstChild.get());
50 ASSERT_EQ(root->lastChild(), firstChild.get());
51 ASSERT_EQ(firstChild->parent(), root.get());
54 ASSERT_EQ(root->firstChild(), firstChild.get());
56 ASSERT_EQ(lastChild->previous(), firstChild.get());
57 ASSERT_EQ(firstChild
64 RefPtr<TestTree> firstChild = TestTree::create(); local
127 RefPtr<TestTree> firstChild; member in class:__anon11298::Trio
[all...]
H A DTreeNode.h64 NodeType* firstChild() const { return m_firstChild; } function in class:WTF::TreeNode
149 if (typename TreeNode<T>::NodeType* next = current->firstChild())
169 while (first->firstChild())
170 first = first->firstChild();
183 while (next->firstChild())
184 next = next->firstChild();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeWalker.cpp74 Node* TreeWalker::firstChild(ScriptState* state) function in class:WebCore::TreeWalker
76 for (RefPtr<Node> node = m_current->firstChild(); node; ) {
85 if (node->firstChild()) {
86 node = node->firstChild();
192 if (sibling->firstChild()) {
193 sibling = sibling->firstChild();
257 while (Node* firstChild = node->firstChild()) {
258 node = firstChild;
H A DContainerNode.h83 Node* firstChild() const { return m_firstChild; } function in class:WebCore::ContainerNode
188 for (Node* child = firstChild(); child; child = child->nextSibling()) {
200 for (Node* child = firstChild(); child; child = child->nextSibling())
218 inline Node* Node::firstChild() const function in class:WebCore::Node
222 return toContainerNode(this)->firstChild();
250 for (Node* child = node.firstChild(); child; child = child->nextSibling())
259 : m_currentNode(parentNode.firstChild())
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DComposedTreeWalker.h54 void firstChild();
175 inline void ComposedTreeWalker::firstChild() function in class:WebCore::ComposedTreeWalker
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameTree.h54 Frame* firstChild() const { return m_firstChild.get(); } function in class:WebCore::FrameTree
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGContainer.h37 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::RenderSVGContainer
H A DRenderSVGRoot.h45 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLErrors.cpp152 Node* firstChild = documentElement->firstChild(); local
153 if (firstChild)
154 documentElement->parserInsertBefore(reportElement, *firstChild);
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java221 public VirtualGroupEntry(FileSystemEntry firstChild, File parent) { argument
225 groupEntries.insert(firstChild.file.getName(), firstChild);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNode.cpp106 WebNode WebNode::firstChild() const function in class:blink::WebNode
108 return WebNode(m_private->firstChild());
/external/chromium_org/third_party/skia/src/xml/
H A DSkXMLWriter.cpp62 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; local
63 if (firstChild)
69 return 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/chromium_org/third_party/WebKit/Source/core/css/
H A DSelectorChecker.cpp520 for (Node* n = element.firstChild(); n; n = n->nextSibling()) {
589 bool firstChild = siblingTraversalStrategy.isFirstChild(&element); local
590 bool onlyChild = firstChild && parent->isFinishedParsingChildren() && siblingTraversalStrategy.isLastChild(&element);
595 if (firstChild && childStyle)

Completed in 2296 milliseconds

12