Lines Matching refs:pNs
61 for (xmlNsPtr pNs = m_aNodePtr->nsDef; pNs != 0; pNs = pNs->next) { in saxify() local
62 const xmlChar *pPrefix = pNs->prefix; in saxify()
69 const xmlChar *pHref = pNs->href; in saxify()
461 xmlNsPtr const pNs = in removeAttributeNS() local
464 if (0 == xmlUnsetNsProp(m_aNodePtr, pNs, pName)) { in removeAttributeNS()
565 xmlNsPtr const pNs( pCAttr->GetNamespace(m_aNodePtr) ); in setAttributeNode_Impl_Lock() local
566 res = xmlNewNsProp(m_aNodePtr, pNs, pAttr->name, pContent); in setAttributeNode_Impl_Lock()
699 xmlNsPtr pNs = xmlSearchNs(m_aNodePtr->doc, m_aNodePtr, xPrefix); in setAttributeNS() local
701 if (pNs == NULL) { in setAttributeNS()
702 pNs = xmlNewNs(m_aNodePtr, xURI, xPrefix); in setAttributeNS()
705 if (strcmp((char*)pNs->href, (char*)xURI) != 0) { in setAttributeNS()
715 xmlGetNsProp(m_aNodePtr, xLName, pNs->href), xmlFree); in setAttributeNS()
718 xmlNewNsProp(m_aNodePtr, pNs, xLName, xValue); in setAttributeNS()
723 xmlSetNsProp(m_aNodePtr, pNs, xLName, xValue); in setAttributeNS()