Lines Matching refs:Child

88   for (xmlNodePtr Child = Parent->children; Child; Child = Child->next) {  in getChildWithName()  local
89 if (xmlStringsEqual(Child->name, ElementName)) { in getChildWithName()
90 return Child; in getChildWithName()
324 for (xmlNodePtr Child = Node->children; Child; Child = Child->next) { in explicateNamespace() local
325 explicateNamespace(PrefixDef, Child); in explicateNamespace()
498 for (xmlNodePtr Child = Node->children; Child; Child = Child->next) { in reconcileNamespaces() local
499 if (auto E = reconcileNamespaces(Child)) { in reconcileNamespaces()
516 for (xmlNodePtr Child = AdditionalFirstChild; Child; Child = Child->next) { in treeMerge() local
518 if (!isMergeableElement(Child->name) || in treeMerge()
520 getChildWithName(OriginalRoot, Child->name)) || in treeMerge()
521 !hasRecognizedNamespace(Child)) { in treeMerge()
522 StoreNext.next = Child->next; in treeMerge()
523 xmlUnlinkNode(Child); in treeMerge()
524 if (!xmlAddChild(OriginalRoot, Child)) { in treeMerge()
526 FROM_XML_CHAR(Child->name)); in treeMerge()
528 if (auto E = reconcileNamespaces(Child)) { in treeMerge()
531 Child = &StoreNext; in treeMerge()
532 } else if (auto E = treeMerge(OriginalChildWithName, Child)) { in treeMerge()
541 for (xmlNodePtr Child = Root->children; Child; Child = Child->next) { in stripComments() local
542 if (!xmlStringsEqual(Child->name, TO_XML_CHAR("comment"))) { in stripComments()
543 stripComments(Child); in stripComments()
546 StoreNext.next = Child->next; in stripComments()
547 xmlNodePtr Remove = Child; in stripComments()
548 Child = &StoreNext; in stripComments()
564 for (xmlNodePtr Child = Node->children; Child; Child = Child->next) { in setAttributeNamespaces() local
565 setAttributeNamespaces(Child); in setAttributeNamespaces()
573 for (xmlNodePtr Child = Node->children; Child; Child = Child->next) { in checkAndStripPrefixes() local
574 checkAndStripPrefixes(Child, RequiredPrefixes); in checkAndStripPrefixes()