Lines Matching refs:parent
323 if (cur->parent != NULL) { in appendChild()
597 GetOwnerDocument().GetCNode(m_aNodePtr->parent).get()); in getParentNode()
695 if (pNewChild->parent != NULL) in insertBefore()
726 pNewChild->parent = cur->parent; in insertBefore()
727 if (pNewChild->parent->children == cur) { in insertBefore()
728 pNewChild->parent->children = pNewChild; in insertBefore()
884 if (pNew->parent != NULL) { in replaceChild()
926 pNew->parent = pOld->parent; in replaceChild()
927 if(pNew->parent->children == pOld) in replaceChild()
928 pNew->parent->children = pNew; in replaceChild()
929 if(pNew->parent->last == pOld) in replaceChild()
930 pNew->parent->last = pNew; in replaceChild()
933 pOld->parent = NULL; in replaceChild()