Lines Matching full:child
1258 htmlNodePtr child;
1263 child = elem->children;
1264 while (child != NULL) {
1265 if (htmlAutoCloseTag(doc, name, child)) return(1);
1266 child = child->next;
1278 * if a tag is autoclosed by one of it's child
1284 htmlNodePtr child;
1287 child = elem->children;
1288 while (child != NULL) {
1289 if (htmlAutoCloseTag(doc, elem->name, child)) return(1);
1290 child = child->next;
5712 * Checks whether an HTML element may be a direct child of a parent element.
5735 * Checks whether an HTML element may be a direct child of a parent element.