Home | History | Annotate | Download | only in dom

Lines Matching refs:firstChild

631     while (n && n->firstChild())
632 n = n->firstChild();
686 while (Node* firstChild = node->firstChild())
687 node = firstChild;
915 if (n->firstChild())
1118 if (firstChild())
1119 return firstChild();
1151 while (Node* firstChild = next->firstChild())
1152 next = firstChild;
1230 for (Node *n = child->firstChild(); n; n = n->nextSibling()) {
1421 if (!isAtomicNode(this) && firstChild())
1422 return firstChild();
1797 for (Node* n = firstChild(); n; n = n->traverseNextNode(this)) {
1880 Node* child = firstChild();
1881 Node* otherChild = other->firstChild();
2122 for (Node* child = node->firstChild(); child; child = child->nextSibling()) {