Home | History | Annotate | Download | only in Api

Lines Matching full:child

94     The contents of child elements can be converted to plain text with
98 It is possible to replace the contents of child elements using
201 Returns a new list of child elements matching the given CSS selector
217 Returns the first child element that matches the given CSS selector
580 Returns the element's first child.
588 for (Node* child = m_element->firstChild(); child; child = child->nextSibling()) {
589 if (!child->isElementNode())
591 Element* e = static_cast<Element*>(child);
598 Returns the element's last child.
606 for (Node* child = m_element->lastChild(); child; child = child->previousSibling()) {
607 if (!child->isElementNode())
609 Element* e = static_cast<Element*>(child);
942 Appends the given \a element as the element's last child.
944 If \a element is the child of another element, it is re-parented to this
945 element. If \a element is a child of this element, then its position in
962 Appends the result of parsing \a markup as the element's last child.
984 Prepends \a element as the element's first child.
986 If \a element is the child of another element, it is re-parented to this
987 element. If \a element is a child of this element, then its position in
1008 Prepends the result of parsing \a markup as the element's first child.
1037 If \a element is the child of another element, it is re-parented to the
1084 If \a element is the child of another element, it is re-parented to the
1221 the child of the deepest descendant within \a element.
1240 for (RefPtr<Node> child = m_element->firstChild(); child;) {
1241 RefPtr<Node> next = child->nextSibling();
1242 insertionPoint->appendChild(child, exception);
1243 child = next;
1254 This element becomes the child of the deepest descendant within \a markup.
1283 for (RefPtr<Node> child = m_element->firstChild(); child;) {
1284 RefPtr<Node> next = child->nextSibling();
1285 insertionPoint->appendChild(child, exception);
1286 child = next;
1296 Encloses this element with \a element. This element becomes the child of
1329 becomes the child of the deepest descendant within \a markup.
1535 Constructs a collection of elements from the list of child elements of \a contextElement that