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

1 2 3 4 5

  /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; }
  /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
  /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...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListLastItemPartiallyVisibleTest.java 47 final View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
49 lastChild.getBottom() > mListBottom);
73 final View lastChild = mListView.getSelectedView();
74 final int lastTop = lastChild.getTop();
77 lastTop, lastChild.getTop());
ListOfThinItemsTest.java 57 final View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
58 final int lastVisiblePosition = lastChild.getId();
72 lastChild.getBottom() >= listBottom);
96 final View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
111 lastChild.getBottom() >= listBottom);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchTest.java 75 View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
77 TouchUtils.dragViewToTop(this, lastChild);
ListOfTouchablesTest.java 59 View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
63 TouchUtils.dragViewBy(this, lastChild, Gravity.TOP | Gravity.LEFT,
75 View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
77 int lastTop = lastChild.getTop();
79 int distance = TouchUtils.dragViewToY(this, lastChild,
83 lastTop - (distance - ViewConfiguration.getTouchSlop() - 1), lastChild.getTop());
ListTouchBottomGravityTest.java 62 View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
69 lastChild.getId());
72 mListView.getHeight() - mListView.getListPaddingBottom(), lastChild.getBottom());
77 View lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
79 TouchUtils.dragViewToTop(this, lastChild);
81 lastChild = mListView.getChildAt(mListView.getChildCount() - 1);
88 lastChild.getId());
91 mListView.getHeight() - mListView.getListPaddingBottom(), lastChild.getBottom());
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ComposedTreeWalker.h 55 void lastChild();
182 inline void ComposedTreeWalker::lastChild()
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchStackFromBottomManyTest.java 78 View lastChild = mGridView.getChildAt(mGridView.getChildCount() - 1);
81 lastChild.getId());
84 mGridView.getHeight() - mGridView.getListPaddingBottom(), lastChild.getBottom());
GridTouchStackFromBottomTest.java 60 View lastChild = mGridView.getChildAt(mGridView.getChildCount() - 1);
63 mGridView.getAdapter().getCount() - 1, lastChild.getId());
66 mGridView.getHeight() - mGridView.getListPaddingBottom(), lastChild.getBottom());
77 View lastChild = mGridView.getChildAt(mGridView.getChildCount() - 1);
80 mGridView.getAdapter().getCount() - 1, lastChild.getId());
83 mGridView.getHeight() - mGridView.getListPaddingBottom(), lastChild.getBottom());
94 View lastChild = mGridView.getChildAt(mGridView.getChildCount() - 1);
97 mGridView.getAdapter().getCount() - 1, lastChild.getId());
100 mGridView.getHeight() - mGridView.getListPaddingBottom(), lastChild.getBottom());
111 View lastChild = mGridView.getChildAt(mGridView.getChildCount() - 1)
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
cdatasectiongetdata.java 72 Node lastChild;
78 lastChild = child.getLastChild();
79 nodeType = (int) lastChild.getNodeType();
81 data = ((CharacterData) /*Node */lastChild).getData();
hc_attrappendchild1.java 67 Node lastChild;
81 lastChild = titleAttr.getLastChild();
82 value = lastChild.getNodeValue();
hc_attrappendchild2.java 66 Node lastChild;

Completed in 1428 milliseconds

1 2 3 4 5