Lines Matching refs:pOld
793 ::rtl::Reference<CNode> const pOld(CNode::GetImplementation(xOldChild)); in removeChild()
794 if (!pOld.is()) { throw RuntimeException(); } in removeChild()
795 xmlNodePtr const old = pOld->GetNodePtr(); in removeChild()
802 pOld->invalidate(); // freed by xmlRemoveProp in removeChild()
808 pOld->m_bUnlinked = true; in removeChild()
874 xmlNodePtr const pOld = pOldNode->GetNodePtr(); in replaceChild() local
876 if (!pOld || !pNew) { throw RuntimeException(); } in replaceChild()
895 if( pOld->type == XML_ATTRIBUTE_NODE ) in replaceChild()
898 if ( pOld->type != pNew->type ) in replaceChild()
905 xmlAttrPtr pAttr = (xmlAttrPtr)pOld; in replaceChild()
917 if(cur == pOld) in replaceChild()
920 pNew->prev = pOld->prev; in replaceChild()
923 pNew->next = pOld->next; in replaceChild()
926 pNew->parent = pOld->parent; in replaceChild()
927 if(pNew->parent->children == pOld) in replaceChild()
929 if(pNew->parent->last == pOld) in replaceChild()
931 pOld->next = NULL; in replaceChild()
932 pOld->prev = NULL; in replaceChild()
933 pOld->parent = NULL; in replaceChild()