Lines Matching refs:m_aNodePtr

61         for (xmlNsPtr pNs = m_aNodePtr->nsDef; pNs != 0; pNs = pNs->next) {  in saxify()
76 for (xmlAttrPtr pAttr = m_aNodePtr->properties; in saxify()
95 for (xmlNodePtr pChild = m_aNodePtr->children; in saxify()
109 addNamespaces(i_rContext,m_aNodePtr); in fastSaxify()
113 for (xmlAttrPtr pAttr = m_aNodePtr->properties; in fastSaxify()
135 const xmlChar* xPrefix = m_aNodePtr->ns ? m_aNodePtr->ns->prefix : (const xmlChar*)""; in fastSaxify()
136 const xmlChar* xName = m_aNodePtr->name; in fastSaxify()
177 for (xmlNodePtr pChild = m_aNodePtr->children; in fastSaxify()
238 if (0 == m_aNodePtr) { in getAttribute()
244 xmlGetProp(m_aNodePtr, (xmlChar*)o1.getStr()), xmlFree); in getAttribute()
261 if (0 == m_aNodePtr) { in getAttributeNode()
267 xmlAttrPtr const pAttr = xmlHasProp(m_aNodePtr, pName); in getAttributeNode()
287 if (0 == m_aNodePtr) { in getAttributeNodeNS()
296 xmlAttrPtr const pAttr = xmlHasNsProp(m_aNodePtr, pName, pNS); in getAttributeNodeNS()
318 if (0 == m_aNodePtr) { in getAttributeNS()
328 xmlGetNsProp(m_aNodePtr, pName, pNS), xmlFree); in getAttributeNS()
379 if (0 == m_aNodePtr) { in getTagName()
382 OUString const ret((sal_Char*)m_aNodePtr->name, in getTagName()
383 strlen((char*)m_aNodePtr->name), RTL_TEXTENCODING_UTF8); in getTagName()
399 return (m_aNodePtr != NULL && xmlHasProp(m_aNodePtr, xName) != NULL); in hasAttribute()
416 return (m_aNodePtr != NULL && xmlHasNsProp(m_aNodePtr, xName, xNs) != NULL); in hasAttributeNS()
427 if (0 == m_aNodePtr) { in removeAttribute()
433 xmlAttrPtr const pAttr = xmlHasProp(m_aNodePtr, pName); in removeAttribute()
434 if (0 == xmlUnsetProp(m_aNodePtr, pName)) { in removeAttribute()
452 if (0 == m_aNodePtr) { in removeAttributeNS()
462 xmlSearchNsByHref(m_aNodePtr->doc, m_aNodePtr, pURI); in removeAttributeNS()
463 xmlAttrPtr const pAttr = xmlHasNsProp(m_aNodePtr, pName, pURI); in removeAttributeNS()
464 if (0 == xmlUnsetNsProp(m_aNodePtr, pNs, pName)) { in removeAttributeNS()
482 if (0 == m_aNodePtr) { in removeAttributeNode()
494 if (pAttr->parent != m_aNodePtr) in removeAttributeNode()
500 if (pAttr->doc != m_aNodePtr->doc) in removeAttributeNode()
541 if (0 == m_aNodePtr) { in setAttributeNode_Impl_Lock()
565 xmlNsPtr const pNs( pCAttr->GetNamespace(m_aNodePtr) ); in setAttributeNode_Impl_Lock()
566 res = xmlNewNsProp(m_aNodePtr, pNs, pAttr->name, pContent); in setAttributeNode_Impl_Lock()
568 res = xmlNewProp(m_aNodePtr, pAttr->name, pContent); in setAttributeNode_Impl_Lock()
626 if (0 == m_aNodePtr) { in setAttribute()
632 xmlGetProp(m_aNodePtr, xName), xmlFree); in setAttribute()
635 xmlNewProp(m_aNodePtr, xName, xValue); in setAttribute()
640 xmlSetProp(m_aNodePtr, xName, xValue); in setAttribute()
694 if (0 == m_aNodePtr) { in setAttributeNS()
699 xmlNsPtr pNs = xmlSearchNs(m_aNodePtr->doc, m_aNodePtr, xPrefix); in setAttributeNS()
702 pNs = xmlNewNs(m_aNodePtr, xURI, xPrefix); 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()
760 if (m_aNodePtr != NULL) in getLocalName()
762 const xmlChar* xName = m_aNodePtr->name; in getLocalName()
786 if (0 == m_aNodePtr) { in setElementName()
791 xmlNodeSetName(m_aNodePtr, xName); in setElementName()