Searched refs:lastChild (Results 1 - 25 of 166) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNodeTest.cpp46 RefPtr<TestTree> lastChild = TestTree::create(); local
50 EXPECT_EQ(root->lastChild(), firstChild.get());
53 root->appendChild(lastChild.get());
55 EXPECT_EQ(root->lastChild(), lastChild.get());
56 EXPECT_EQ(lastChild->previous(), firstChild.get());
57 EXPECT_EQ(firstChild->next(), lastChild.get());
58 EXPECT_EQ(lastChild->parent(), root.get());
66 RefPtr<TestTree> lastChild = TestTree::create(); local
69 root->insertBefore(lastChild
129 RefPtr<TestTree> lastChild; member in class:__anon11443::Trio
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRubyBase.cpp93 RenderObject* lastChild = toBase->lastChild(); local
94 if (lastChild && lastChild->isAnonymousBlock() && lastChild->childrenInline())
95 toBlock = toRenderBlock(lastChild);
118 RenderObject* lastChildThere = toBase->lastChild();
H A DRenderMedia.h42 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::RenderMedia
44 // If you have a RenderMedia, use firstChild or lastChild instead.
H A DRenderObjectChildList.cpp104 if (lastChild() == oldChild)
151 if (lastChild())
152 lastChild()->setNextSibling(newChild);
153 newChild->setPreviousSibling(lastChild());
H A DRenderObjectChildList.h47 RenderObject* lastChild() const { return m_lastChild.get(); } function in class:blink::RenderObjectChildList
50 // will need to manipulate firstChild or lastChild directly.
H A DRenderTableCol.h42 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::FINAL
44 // If you have a RenderTableCol, use firstChild or lastChild instead.
/external/chromium_org/third_party/WebKit/Source/web/
H A DRemoteFrameClient.cpp54 Frame* RemoteFrameClient::lastChild() const function in class:blink::RemoteFrameClient
56 return toCoreFrame(m_webFrame->lastChild());
H A DRemoteFrameClient.h27 virtual Frame* lastChild() const OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNodeTraversal.cpp101 Node* descendant = current.lastChild();
102 for (Node* child = descendant; child; child = child->lastChild())
119 while (Node* child = previous->lastChild())
167 if (Node* lastChild = current.lastChild())
168 return lastChild;
H A DTreeWalker.cpp106 Node* TreeWalker::lastChild(ExceptionState& exceptionState) function in class:blink::TreeWalker
108 for (RefPtrWillBeRawPtr<Node> node = m_current->lastChild(); node; ) {
117 if (node->lastChild()) {
118 node = node->lastChild();
154 if (sibling->lastChild()) {
155 sibling = sibling->lastChild();
224 while (Node* lastChild = node->lastChild()) {
225 node = lastChild;
H A DTreeWalker.idl34 [RaisesException] Node lastChild();
H A DParentNode.h54 return ElementTraversal::lastChild(node);
H A DTreeWalker.h53 Node* lastChild(ExceptionState&);
H A DNodeRenderingTraversal.cpp99 walker.lastChild();
113 static Node* lastChild(const Node* node) function in namespace:blink::NodeRenderingTraversal
116 walker.lastChild();
127 if (Node* child = lastChild(parentNode))
144 last = lastChild(currentElement);
150 return lastChild(node);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableRowsCollection.cpp103 for (HTMLElement* tfoot = Traversal<HTMLElement>::lastChild(table, HasHTMLTagName(tfootTag)); tfoot; tfoot = Traversal<HTMLElement>::previousSibling(*tfoot, HasHTMLTagName(tfootTag))) {
104 if (HTMLTableRowElement* lastRow = Traversal<HTMLTableRowElement>::lastChild(*tfoot))
108 for (HTMLElement* child = Traversal<HTMLElement>::lastChild(table); child; child = Traversal<HTMLElement>::previousSibling(*child)) {
112 if (HTMLTableRowElement* lastRow = Traversal<HTMLTableRowElement>::lastChild(*child))
117 for (HTMLElement* thead = Traversal<HTMLElement>::lastChild(table, HasHTMLTagName(theadTag)); thead; thead = Traversal<HTMLElement>::previousSibling(*thead, HasHTMLTagName(theadTag))) {
118 if (HTMLTableRowElement* lastRow = Traversal<HTMLTableRowElement>::lastChild(*thead))
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameClient.h25 virtual Frame* lastChild() const = 0;
/external/chromium-trace/trace-viewer/src/ui/
H A Dcontainer_that_decorates_its_children.js60 while (this.lastChild)
61 HTMLUnknownElement.prototype.removeChild.call(this, this.lastChild);
/external/chromium_org/remoting/webapp/
H A Dpaired_client_manager.js191 while (this.clientRows_.lastChild) {
192 this.clientRows_.removeChild(this.clientRows_.lastChild);
268 while (this.clientRows_.lastChild) {
269 this.clientRows_.removeChild(this.clientRows_.lastChild);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTree.cs208 CommonTree lastChild = (CommonTree)Children[Children.Count - 1];
210 stopIndex = lastChild.TokenStopIndex;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTree.cs276 ITree lastChild = Children[Children.Count - 1];
278 stopIndex = lastChild.TokenStopIndex;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGContainer.h39 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::RenderSVGContainer
41 // If you have a RenderSVGContainer, use firstChild or lastChild instead.
/external/chromium_org/third_party/markdown/extensions/
H A Dadmonition.py102 sibling = self.lastChild(parent)
108 sibling = self.lastChild(parent)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTree.java151 CommonTree lastChild = (CommonTree)children.get(children.size()-1);
153 stopIndex = lastChild.getTokenStopIndex();
/external/chromium_org/content/browser/resources/accessibility/
H A Daccessibility.js48 while (row.lastChild != element)
49 row.removeChild(row.lastChild);
185 while (row.lastChild != $(id + ':showTree'))
186 row.removeChild(row.lastChild);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSimplifyMarkupCommand.cpp74 if (currentNode->firstChild() != currentNode->lastChild()) {
106 ASSERT(nodesToRemove[pastLastNodeToRemove]->firstChild() == nodesToRemove[pastLastNodeToRemove]->lastChild());

Completed in 8939 milliseconds

1234567