HomeSort by relevance Sort by last modified time
    Searched defs:lastChild (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMedia.h 42 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
44 // If you have a RenderMedia, use firstChild or lastChild instead.
RenderObjectChildList.h 47 RenderObject* lastChild() const { return m_lastChild.get(); }
50 // will need to manipulate firstChild or lastChild directly.
RenderInline.h 41 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
43 // If you have a RenderInline, use firstChild or lastChild instead.
RenderRubyBase.cpp 93 RenderObject* lastChild = toBase->lastChild();
94 if (lastChild && lastChild->isAnonymousBlock() && lastChild->childrenInline())
95 toBlock = toRenderBlock(lastChild);
118 RenderObject* lastChildThere = toBase->lastChild();
RenderTableCol.h 42 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
44 // If you have a RenderTableCol, use firstChild or lastChild instead.
CounterNode.h 62 CounterNode* lastChild() const { return m_lastChild; }
RenderFrameSet.h 63 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
65 // If you have a RenderFrameSet, use firstChild or lastChild instead.
InlineFlowBox.h 87 InlineBox* lastChild() const { checkConsistency(); return m_lastChild; }
177 float placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild,
RenderBlock.h 72 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
74 // If you have a RenderBlock, use firstChild or lastChild instead.
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeWalker.cpp 106 Node* TreeWalker::lastChild(ExceptionState& exceptionState)
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;
ElementTraversal.h 42 static ElementType* lastChild(const ContainerNode& current) { return lastChildTemplate(current); }
43 static ElementType* lastChild(const Node& current) { return lastChildTemplate(current); }
45 static ElementType* lastChild(const ContainerNode&, MatchFunc);
187 Node* node = current.lastChild();
195 inline ElementType* Traversal<ElementType>::lastChild(const ContainerNode& current, MatchFunc isMatch)
197 ElementType* element = Traversal<ElementType>::lastChild(current);
NodeRenderingTraversal.cpp 99 walker.lastChild();
113 static Node* lastChild(const Node* node)
116 walker.lastChild();
127 if (Node* child = lastChild(parentNode))
144 last = lastChild(currentElement);
150 return lastChild(node);
  /external/chromium_org/third_party/WebKit/Source/web/
RemoteFrameClient.cpp 54 Frame* RemoteFrameClient::lastChild() const
56 return toCoreFrame(m_webFrame->lastChild());
WebFrame.cpp 164 WebFrame* WebFrame::lastChild() const
WebNode.cpp 111 WebNode WebNode::lastChild() const
113 return WebNode(m_private->lastChild());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.h 45 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
47 // If you have a RenderSVGRoot, use firstChild or lastChild instead.
RenderSVGContainer.h 39 RenderObject* lastChild() const { ASSERT(children() == virtualChildren()); return children()->lastChild(); }
41 // If you have a RenderSVGContainer, use firstChild or lastChild instead.
  /external/chromium_org/third_party/WebKit/Source/wtf/
TreeNodeTest.cpp 46 RefPtr<TestTree> lastChild = TestTree::create();
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();
69 root->insertBefore(lastChild.get(), 0)
    [all...]
TreeNode.h 67 NodeType* lastChild() const { return m_lastChild; }
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ComposedTreeWalker.h 55 void lastChild();
182 inline void ComposedTreeWalker::lastChild()
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTree.java 151 CommonTree lastChild = (CommonTree)children.get(children.size()-1);
153 stopIndex = lastChild.getTokenStopIndex();
  /external/chromium_org/third_party/markdown/
blockprocessors.py 88 def lastChild(self, parent):
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/
blockprocessors.py 32 def lastChild(self, parent):
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/
FrameTree.cpp 114 Frame* FrameTree::lastChild() const
118 return m_thisFrame->client()->lastChild();
376 for (Frame* last = lastChild(); last; last = last->tree().lastChild())
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 475 View lastChild = mScrollView.findViewById(R.id.last_horizontal_child);
479 mScrollView.requestChildFocus(lastChild, lastChild);

Completed in 320 milliseconds

1 2