HomeSort by relevance Sort by last modified time
    Searched refs:firstChild (Results 1 - 25 of 453) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectChildList.cpp 40 while (firstChild()) {
41 if (firstChild()->isListMarker() || (firstChild()->style()->styleType() == FIRST_LETTER && !firstChild()->isText()))
42 firstChild()->remove(); // List markers are owned by their enclosing list and so don't get destroyed by this container. Similarly, first letters are destroyed by their remaining text fragment.
43 else if (firstChild()->isRunIn() && firstChild()->node()) {
44 firstChild()->node()->setRenderer(0);
45 firstChild()->node()->setNeedsStyleRecalc();
46 firstChild()->destroy()
    [all...]
RenderMedia.h 41 RenderObject* firstChild() const { ASSERT(children() == virtualChildren()); return children()->firstChild(); }
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/touch/
GridTouchVerticalSpacingStackFromBottomTest.java 62 View firstChild = mGridView.getChildAt(0);
67 TouchUtils.dragViewBy(this, firstChild, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0,
80 View firstChild = mGridView.getChildAt(0);
81 if (firstChild.getTop() < this.mGridView.getListPaddingTop()) {
82 firstChild = mGridView.getChildAt(1);
89 TouchUtils.dragViewBy(this, firstChild, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0,
102 View firstChild = mGridView.getChildAt(0);
103 if (firstChild.getTop() < mGridView.getListPaddingTop()) {
104 firstChild = mGridView.getChildAt(1);
107 int firstTop = firstChild.getTop()
    [all...]
GridTouchVerticalSpacingTest.java 56 View firstChild = mGridView.getChildAt(0);
59 int firstTop = firstChild.getTop();
73 View firstChild = mGridView.getChildAt(0);
76 int firstTop = firstChild.getTop();
105 View firstChild;
117 firstChild = mGridView.getChildAt(0);
118 firstId = firstChild.getId();
119 firstTop = firstChild.getTop();
136 firstChild = mGridView.getChildAt(0);
137 firstId = firstChild.getId()
    [all...]
GridTouchStackFromBottomManyTest.java 55 View firstChild;
62 firstChild = mGridView.getChildAt(0);
64 assertEquals("Item zero not the first child in the grid", 0, firstChild.getId());
67 mGridView.getListPaddingTop(), firstChild.getTop());
  /frameworks/base/core/tests/coretests/src/android/widget/listview/touch/
ListTouchTest.java 57 View firstChild = mListView.getChildAt(0);
59 TouchUtils.dragViewToBottom(this, firstChild);
65 firstChild = mListView.getChildAt(0);
67 assertEquals("Item zero not the first child in the list", 0, firstChild.getId());
70 firstChild.getTop());
83 View firstChild = mListView.getChildAt(0);
85 assertEquals("Item zero not the first child in the list", 0, firstChild.getId());
88 firstChild.getTop());
ListTouchBottomGravityManyTest.java 69 View firstChild = mListView.getChildAt(0);
71 assertEquals("Item zero not the first child in the list", 0, firstChild.getId());
74 firstChild.getTop());
100 View firstChild = mListView.getChildAt(0);
105 TouchUtils.dragViewBy(this, firstChild, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL,
118 View firstChild = mListView.getChildAt(0);
119 if (firstChild.getTop() < this.mListView.getListPaddingTop()) {
120 firstChild = mListView.getChildAt(1);
127 TouchUtils.dragViewBy(this, firstChild, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL,
140 View firstChild = mListView.getChildAt(0)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeContainingElementCommand.cpp 57 Node* firstChild = parent->firstChild();
58 if (!firstChild || !firstChild->isElementNode())
60 parent = toElement(firstChild);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrsetvalue1.java 64 Node firstChild;
71 firstChild = titleAttr.getFirstChild();
72 assertNotNull("attrChildNotNull", firstChild);
74 firstChild.setNodeValue("impl reused node");
79 firstChild = titleAttr.getLastChild();
80 value = firstChild.getNodeValue();
82 otherChild = firstChild.getNextSibling();
hc_attrsetvalue2.java 65 Node firstChild;
74 firstChild = titleAttr.getFirstChild();
75 assertNotNull("attrChildNotNull", firstChild);
77 firstChild.setNodeValue("impl reused node");
82 firstChild = titleAttr.getLastChild();
83 value = firstChild.getNodeValue();
85 otherChild = firstChild.getNextSibling();
hc_attrreplacechild1.java 67 Node firstChild;
74 firstChild = titleAttr.getFirstChild();
75 assertNotNull("attrChildNotNull", firstChild);
76 retval = titleAttr.replaceChild(textNode, firstChild);
83 firstChild = titleAttr.getFirstChild();
84 value = firstChild.getNodeValue();
documentgetelementsbytagnamevalue.java 69 Node firstChild;
74 firstChild = nameNode.getFirstChild();
75 childValue = firstChild.getNodeValue();
elementnormalize.java 69 Node firstChild;
76 firstChild = testName.getFirstChild();
77 childValue = firstChild.getNodeValue();
hc_documentgetelementsbytagnamevalue.java 68 Node firstChild;
73 firstChild = nameNode.getFirstChild();
74 childValue = firstChild.getNodeValue();
hc_attrreplacechild2.java 69 Node firstChild;
80 firstChild = titleAttr.getFirstChild();
81 assertNotNull("attrChildNotNull", firstChild);
82 retval = titleAttr.replaceChild(docFrag, firstChild);
89 firstChild = titleAttr.getFirstChild();
90 value = firstChild.getNodeValue();
hc_attrnormalize.java 67 Node firstChild;
81 firstChild = titleAttr.getFirstChild();
82 value = firstChild.getNodeValue();
84 secondChild = firstChild.getNextSibling();
hc_elementnormalize2.java 63 Node firstChild;
78 firstChild = attrNode.getFirstChild();
79 childValue = firstChild.getNodeValue();
80 assertEquals("firstChild", "Yes", childValue);
81 secondChild = firstChild.getNextSibling();
hc_attrgetvalue2.java 68 Node firstChild;
89 firstChild = titleAttr.getFirstChild();
90 retval = titleAttr.insertBefore(alphaRef, firstChild);
hc_attrinsertbefore1.java 67 Node firstChild;
84 firstChild = titleAttr.getFirstChild();
85 value = firstChild.getNodeValue();
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstanceList.cpp 41 for (SVGElementInstance* instance = m_rootInstance->firstChild(); instance; instance = instance->nextSibling())
49 SVGElementInstance* instance = m_rootInstance->firstChild();
  /external/chromium/chrome/common/extensions/docs/js/
sidebar.js 25 list[i].parentNode.firstChild;
68 } else if (item.firstChild &&
69 item.firstChild.nodeType == TEXT_NODE) {
77 item.insertBefore(a, item.firstChild);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDetailsElement.cpp 75 for (Node* child = firstChild(); child; child = child->nextSibling()) {
80 HTMLContentElement* content = toHTMLContentElement(userAgentShadowRoot()->firstChild());
81 ASSERT(content->firstChild() && content->firstChild()->hasTagName(summaryTag));
82 return toElement(content->firstChild());
  /external/chromium_org/chrome_frame/cfinstall/src/miniclosure/
style.js 24 var firstChild = h.firstChild;
25 h.insertBefore(ss, firstChild);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NativeBreakpointsSidebarPane.js 56 if (!this.listElement.firstChild) {
67 if (!this.listElement.firstChild) {
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListLastItemPartiallyVisibleTest.java 56 final View firstChild = mListView.getChildAt(0);
57 final int firstBottom = firstChild.getBottom();
60 firstBottom, firstChild.getBottom());

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011>>