HomeSort by relevance Sort by last modified time
    Searched full:firstchild (Results 226 - 250 of 880) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/manual-tests/
modal-dialog.html 5 document.getElementById("timerResult").firstChild.data = "Timer fired!";
  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 48 while (firstChild()) {
49 if (firstChild()->isListMarker() || (firstChild()->style()->styleType() == FIRST_LETTER && !firstChild()->isText()))
50 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.
51 else if (firstChild()->isRunIn() && firstChild()->node()) {
52 firstChild()->node()->setRenderer(0);
53 firstChild()->node()->setNeedsStyleRecalc();
54 firstChild()->destroy()
    [all...]
RenderRuby.cpp 61 && object->firstChild()
62 && object->firstChild()->style()->styleType() == BEFORE;
69 && object->firstChild()
70 && object->firstChild()->style()->styleType() == AFTER;
75 RenderObject* child = ruby->firstChild();
134 RenderInline::addChild(child, firstChild());
140 RenderInline::addChild(beforeBlock, firstChild());
241 RenderBlock::addChild(child, firstChild());
247 RenderBlock::addChild(beforeBlock, firstChild());
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrnormalize.java 67 Node firstChild;
81 firstChild = titleAttr.getFirstChild();
82 value = firstChild.getNodeValue();
84 secondChild = firstChild.getNextSibling();
documentgetelementsbytagnamevalue.java 69 Node firstChild;
74 firstChild = nameNode.getFirstChild();
75 childValue = firstChild.getNodeValue();
  /external/webkit/LayoutTests/fast/xpath/
namespace-vs-predicate.xhtml 32 document.getElementById("result").firstChild.nodeValue = "SUCCESS";
34 document.getElementById("result").firstChild.nodeValue = "FAILURE: " + result.snapshotLength + " node(s) matched - should be 1";
  /external/webkit/Source/WebCore/html/
HTMLTableRowsCollection.cpp 70 child = table->firstChild();
75 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
84 child = table->firstChild();
93 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
102 child = table->firstChild();
107 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
HTMLTableRowElement.cpp 74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
85 for (Node* row = section->firstChild(); row; row = row->nextSibling()) {
95 for (Node *row = foot->firstChild(); row; row = row->nextSibling()) {
136 n = firstChild();
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRoot.cpp 93 firstChild()->addChild(child);
104 if (!firstChild() || !lastChild())
119 RenderObject* current = firstChild();
205 if (!firstChild() || !lastChild())
210 RenderObject* current = lastChild()->firstChild();
232 RenderObject* possibleIndex = firstChild()->firstChild();
  /external/tinyxml2/
tinyxml2.cpp 531 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() )
546 firstChild( 0 ), lastChild( 0 ),
572 while( firstChild ) {
573 XMLNode* node = firstChild;
578 firstChild = lastChild = 0;
585 if ( child == firstChild )
586 firstChild = firstChild->next;
610 TIXMLASSERT( firstChild );
619 TIXMLASSERT( firstChild == 0 );
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
canonicalform07.js 123 child = body.firstChild;
133 child = body.firstChild;
138 assertEquals("firstChild","#text",childName);
datatypenormalization15.js 129 childNode = element.firstChild;
135 childNode = element.firstChild;
141 childNode = element.firstChild;
datatypenormalization17.js 127 childNode = element.firstChild;
133 childNode = element.firstChild;
139 childNode = element.firstChild;
datatypenormalization18.js 129 childNode = element.firstChild;
135 childNode = element.firstChild;
141 childNode = element.firstChild;
documentnormalizedocument10.js 113 text = elem.firstChild;
124 text = elem.firstChild;
136 text = elem.firstChild;
elementcontentwhitespace01.js 114 child = body.firstChild;
130 child = body.firstChild;
135 assertEquals("firstChild","#text",childName);
elementcontentwhitespace03.js 116 child = body.firstChild;
133 child = body.firstChild;
138 assertEquals("firstChild","#text",childName);
infoset03.js 128 childNode = element.firstChild;
135 childNode = element.firstChild;
141 childNode = element.firstChild;
infoset08.js 118 child = body.firstChild;
128 child = body.firstChild;
133 assertEquals("firstChild","#text",childName);
nodeinsertbefore17.js 99 var firstChild;
112 refNode = element.firstChild;
116 insertedText = element.firstChild;
nodeinsertbefore25.js 106 eRef = element.firstChild;
108 span = eRef.firstChild;
111 spanText = span.firstChild;
nodereplacechild31.js 106 ent4Ref = elem.firstChild;
108 span = ent4Ref.firstChild;
111 spanText = span.firstChild;
  /external/webkit/Source/WebCore/editing/
SplitElementCommand.cpp 51 for (Node* node = m_element2->firstChild(); node != m_atChild; node = node->nextSibling())
85 for (Node* node = m_element1->firstChild(); node; node = node->nextSibling())
88 RefPtr<Node> refChild = m_element2->firstChild();
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListOfThinItemsTest.java 95 final View firstChild = mListView.getChildAt(0);
97 final int firstVisiblePosition = firstChild.getId();
109 firstChild.getTop() <= 0);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
YearPickerView.java 142 final View firstChild = getChildAt(0);
143 if (firstChild == null) {
146 return firstChild.getTop();

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>