Lines Matching refs:pNode

199 	const xmlNodePtr pNode) const  in sendStartElement()
236 xmlNsPtr pNsDef = pNode->nsDef; in sendStartElement()
261 xmlAttrPtr pAttr = pNode->properties; in sendStartElement()
286 rtl::OString sNodeName = getNodeQName(pNode); in sendStartElement()
303 const xmlNodePtr pNode) const in sendEndElement()
337 rtl::OString sNodeName = getNodeQName(pNode); in sendEndElement()
350 const xmlNodePtr pNode) const in sendNode()
388 xmlElementType type = pNode->type; in sendNode()
394 xHandler->characters(rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->content)) ))); in sendNode()
397 xHandler2->characters(rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->content)) ))); in sendNode()
404 rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->name)) )), in sendNode()
405 rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->content)) ))); in sendNode()
409 rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->name)) )), in sendNode()
410 rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->content)) ))); in sendNode()
414 rtl::OString XMLDocumentWrapper_XmlSecImpl::getNodeQName(const xmlNodePtr pNode) const in getNodeQName()
440 rtl::OString sNodeName((const sal_Char*)pNode->name); in getNodeQName()
441 if (pNode->ns != NULL) in getNodeQName()
443 xmlNsPtr pNs = pNode->ns; in getNodeQName()
509 const xmlNodePtr pNode) in recursiveDelete() argument
553 if (pNode == m_pStopAtNode) in recursiveDelete()
558 if (pNode != m_pCurrentReservedNode) in recursiveDelete()
560 xmlNodePtr pChild = pNode->children; in recursiveDelete()
588 if (pNode == m_pCurrentElement) in recursiveDelete()
644 void XMLDocumentWrapper_XmlSecImpl::removeNode(const xmlNodePtr pNode) const in removeNode()
671 OSL_ASSERT( m_pCurrentElement != pNode ); in removeNode()
673 xmlAttrPtr pAttr = pNode->properties; in removeNode()
685 xmlUnlinkNode(pNode); in removeNode()
686 xmlFreeNode(pNode); in removeNode()
689 void XMLDocumentWrapper_XmlSecImpl::buildIDAttr(xmlNodePtr pNode) const in buildIDAttr()
715 xmlAttrPtr idAttr = xmlHasProp( pNode, (const unsigned char *)"id" ); in buildIDAttr()
718 idAttr = xmlHasProp( pNode, (const unsigned char *)"Id" ); in buildIDAttr()
728 void XMLDocumentWrapper_XmlSecImpl::rebuildIDLink(xmlNodePtr pNode) const in rebuildIDLink()
754 if (pNode != NULL && pNode->type == XML_ELEMENT_NODE) in rebuildIDLink()
756 buildIDAttr( pNode ); in rebuildIDLink()
758 xmlNodePtr child = pNode->children; in rebuildIDLink()
811 xmlNodePtr pNode = checkElement(node); in isCurrent() local
812 return (pNode == m_pCurrentElement); in isCurrent()
831 xmlNodePtr pNode = checkElement(node); in getNodeName() local
832 return rtl::OUString(RTL_UTF8_USTRINGPARAM ( (sal_Char*)pNode->name )); in getNodeName()
993 xmlNodePtr pNode = checkElement( node ); in rebuildIDLink() local
994 rebuildIDLink(pNode); in rebuildIDLink()