Searched defs:lastChild (Results 1 - 25 of 51) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/rendering/
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.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.
H A DCounterNode.h62 CounterNode* lastChild() const { return m_lastChild; } function in class:blink::CounterNode
H A DRenderInline.h41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::RenderInline
43 // If you have a RenderInline, use firstChild or lastChild instead.
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 DRenderFrameSet.h63 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::FINAL
65 // If you have a RenderFrameSet, use firstChild or lastChild instead.
H A DInlineFlowBox.h87 InlineBox* lastChild() const { checkConsistency(); return m_lastChild; } function in class:blink::InlineFlowBox
177 float placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild,
H A DRenderBlock.h72 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::RenderBlock
74 // If you have a RenderBlock, 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 DWebFrame.cpp164 WebFrame* WebFrame::lastChild() const function in class:blink::WebFrame
H A DWebNode.cpp111 WebNode WebNode::lastChild() const function in class:blink::WebNode
113 return WebNode(m_private->lastChild());
/external/chromium_org/third_party/WebKit/Source/core/dom/
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 DElementTraversal.h42 static ElementType* lastChild(const ContainerNode& current) { return lastChildTemplate(current); } function in class:blink::Traversal
43 static ElementType* lastChild(const Node& current) { return lastChildTemplate(current); } function in class:blink::Traversal
45 static ElementType* lastChild(const ContainerNode&, MatchFunc);
187 Node* node = current.lastChild();
195 inline ElementType* Traversal<ElementType>::lastChild(const ContainerNode& current, MatchFunc isMatch) function in class:blink::Traversal
197 ElementType* element = Traversal<ElementType>::lastChild(current);
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);
H A DContainerNode.h69 Node* lastChild() const { return m_lastChild; } function in class:blink::ContainerNode
318 inline Node* Node::lastChild() const function in class:blink::Node
322 return toContainerNode(this)->lastChild();
/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...]
H A DTreeNode.h67 NodeType* lastChild() const { return m_lastChild; } function in class:WTF::TreeNode
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DComposedTreeWalker.h55 void lastChild();
182 inline void ComposedTreeWalker::lastChild() function in class:blink::ComposedTreeWalker
/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.
H A DRenderSVGRoot.h45 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); } function in class:blink::FINAL
47 // If you have a RenderSVGRoot, use firstChild or lastChild instead.
/external/chromium_org/third_party/markdown/
H A Dblockprocessors.py88 def lastChild(self, parent): member in class:BlockProcessor
245 child = self.lastChild(parent)
264 sibling = self.lastChild(parent)
305 sibling = self.lastChild(parent)
352 sibling = self.lastChild(parent)
369 lch = self.lastChild(lst[-1])
549 sibling = self.lastChild(parent)
574 sibling = self.lastChild(parent)
/external/markdown/markdown/
H A Dblockprocessors.py32 def lastChild(self, parent): member in class:BlockProcessor
174 child = self.lastChild(parent)
193 sibling = self.lastChild(parent)
234 sibling = self.lastChild(parent)
271 sibling = self.lastChild(parent)
434 sibling = self.lastChild(parent)
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrameTree.cpp114 Frame* FrameTree::lastChild() const function in class:blink::FrameTree
118 return m_thisFrame->client()->lastChild();
376 for (Frame* last = lastChild(); last; last = last->tree().lastChild())
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java55 private NestedMapData lastChild = null; field in class:NestedMapData
113 data.prevSibling = sym.lastChild;
114 if (sym.lastChild != null) {
115 // Update previous lastChild to point to new child.
116 sym.lastChild.nextSibling = data;
121 sym.lastChild = data;
143 parent.lastChild = prevSibling;

Completed in 1182 milliseconds

123