Lines Matching refs:pNew
875 xmlNodePtr const pNew = pNewNode->GetNodePtr(); in replaceChild() local
876 if (!pOld || !pNew) { throw RuntimeException(); } in replaceChild()
878 if (pNew == m_aNodePtr) { in replaceChild()
884 if (pNew->parent != NULL) { in replaceChild()
898 if ( pOld->type != pNew->type ) in replaceChild()
920 pNew->prev = pOld->prev; in replaceChild()
921 if (pNew->prev != NULL) in replaceChild()
922 pNew->prev->next = pNew; in replaceChild()
923 pNew->next = pOld->next; in replaceChild()
924 if (pNew->next != NULL) in replaceChild()
925 pNew->next->prev = pNew; 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()