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

123

/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.h41 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:blink::RenderMedia
44 // If you have a RenderMedia, use firstChild or lastChild instead.
H A DRenderObjectChildList.h46 RenderObject* firstChild() const { return m_firstChild.get(); } function in class:blink::RenderObjectChildList
50 // will need to manipulate firstChild or lastChild directly.
H A DRenderTableCol.h41 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:blink::FINAL
44 // If you have a RenderTableCol, use firstChild or lastChild instead.
56 bool isTableColumnGroupWithColumnChildren() { return firstChild(); }
H A DCounterNode.h61 CounterNode* firstChild() const { return m_firstChild; } function in class:blink::CounterNode
H A DRenderInline.h40 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:blink::RenderInline
43 // If you have a RenderInline, use firstChild or lastChild instead.
H A DRenderFrameSet.h62 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:blink::FINAL
65 // If you have a RenderFrameSet, use firstChild or lastChild instead.
/external/chromium_org/third_party/WebKit/Source/web/
H A DRemoteFrameClient.cpp49 Frame* RemoteFrameClient::firstChild() const function in class:blink::RemoteFrameClient
51 return toCoreFrame(m_webFrame->firstChild());
H A DWebFrame.cpp159 WebFrame* WebFrame::firstChild() const function in class:blink::WebFrame
233 WebFrame* child = frame ? frame->firstChild() : 0;
H A DWebNode.cpp106 WebNode WebNode::firstChild() const function in class:blink::WebNode
108 return WebNode(m_private->firstChild());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeWalker.cpp73 Node* TreeWalker::firstChild(ExceptionState& exceptionState) function in class:blink::TreeWalker
75 for (RefPtrWillBeRawPtr<Node> node = m_current->firstChild(); node; ) {
85 node = node->firstChild();
192 sibling = sibling->firstChild();
256 while (Node* firstChild = node->firstChild()) {
257 node = firstChild;
H A DElementTraversal.h38 static ElementType* firstChild(const ContainerNode& current) { return firstChildTemplate(current); } function in class:blink::Traversal
39 static ElementType* firstChild(const Node& current) { return firstChildTemplate(current); } function in class:blink::Traversal
41 static ElementType* firstChild(const ContainerNode&, MatchFunc);
55 // For Elements firstWithin() is always the same as firstChild().
149 Node* node = current.firstChild();
157 inline ElementType* Traversal<ElementType>::firstChild(const ContainerNode& current, MatchFunc isMatch) function in class:blink::Traversal
159 ElementType* element = Traversal<ElementType>::firstChild(current);
207 Node* node = current.firstChild();
H A DNodeRenderingTraversal.cpp80 walker.firstChild();
166 static Node* firstChild(const Node* node) function in namespace:blink::NodeRenderingTraversal
169 walker.firstChild();
180 if (Node* child = firstChild(parentNode))
196 first = firstChild(currentElement);
202 return firstChild(node);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNodeTest.cpp45 RefPtr<TestTree> firstChild = TestTree::create(); local
48 root->appendChild(firstChild.get());
49 EXPECT_EQ(root->firstChild(), firstChild.get());
50 EXPECT_EQ(root->lastChild(), firstChild.get());
51 EXPECT_EQ(firstChild->parent(), root.get());
54 EXPECT_EQ(root->firstChild(), firstChild.get());
56 EXPECT_EQ(lastChild->previous(), firstChild.get());
57 EXPECT_EQ(firstChild
64 RefPtr<TestTree> firstChild = TestTree::create(); local
127 RefPtr<TestTree> firstChild; member in class:__anon11443::Trio
[all...]
H A DTreeNode.h66 NodeType* firstChild() const { return m_firstChild; } function in class:WTF::TreeNode
144 NodeType* child = oldParent->firstChild();
161 if (typename TreeNode<T>::NodeType* next = current->firstChild())
181 while (first->firstChild())
182 first = first->firstChild();
195 while (next->firstChild())
196 next = next->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:blink::ComposedTreeWalker
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DGridPainter.cpp31 bool operator()(const std::pair<RenderBox*, size_t>& firstChild, const std::pair<RenderBox*, size_t>& secondChild) const argument
33 if (firstChild.first->style()->order() != secondChild.first->style()->order())
34 return firstChild.first->style()->order() < secondChild.first->style()->order();
36 return firstChild.second < secondChild.second;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGContainer.h38 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:blink::RenderSVGContainer
41 // If you have a RenderSVGContainer, use firstChild or lastChild instead.
H A DRenderSVGRoot.h44 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); } function in class:blink::FINAL
47 // If you have a RenderSVGRoot, use firstChild or lastChild instead.
/external/chromium_org/third_party/WebKit/Source/core/xml/parser/
H A DXMLErrors.cpp163 Node* firstChild = documentElement->firstChild(); local
164 if (firstChild)
165 documentElement->parserInsertBefore(reportElement, *firstChild);
/external/smali/util/src/main/java/org/jf/util/
H A DClassFileNameHandler.java245 public VirtualGroupEntry(FileSystemEntry firstChild, File parent) { argument
249 groupEntries.insert(firstChild.file.getName(), firstChild);
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameTree.cpp55 for (Frame* child = firstChild(); child; child = child->tree().nextSibling()) {
107 Frame* FrameTree::firstChild() const function in class:blink::FrameTree
111 return m_thisFrame->client()->firstChild();
182 for (Frame* result = firstChild(); result; result = result->tree().nextSibling()) {
202 for (Frame* child = firstChild(); child; child = child->tree().nextSibling())
214 for (Frame* result = firstChild(); result; result = result->tree().nextSibling()) {
237 for (Frame* result = firstChild(); result; result = result->tree().nextSibling())
244 for (Frame* child = firstChild(); child; child = child->tree().nextSibling())
314 Frame* child = firstChild();
416 for (blink::Frame* child = frame->tree().firstChild(); chil
[all...]
/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.cpp565 for (Node* n = element.firstChild(); n; n = n->nextSibling()) {
634 bool firstChild = siblingTraversalStrategy.isFirstChild(element); local
635 bool onlyChild = firstChild && parent->isFinishedParsingChildren() && siblingTraversalStrategy.isLastChild(element);
640 if (firstChild && childStyle)

Completed in 748 milliseconds

123