Lines Matching refs:pAttr

76         for (xmlAttrPtr pAttr = m_aNodePtr->properties;  in saxify()  local
77 pAttr != 0; pAttr = pAttr->next) { in saxify()
79 reinterpret_cast<xmlNodePtr>(pAttr)); in saxify()
113 for (xmlAttrPtr pAttr = m_aNodePtr->properties; in fastSaxify() local
114 pAttr != 0; pAttr = pAttr->next) { in fastSaxify()
116 reinterpret_cast<xmlNodePtr>(pAttr)); in fastSaxify()
119 const xmlChar* xName = pAttr->name; in fastSaxify()
122 if( pAttr->ns && strlen((char*)pAttr->ns->prefix) ) in fastSaxify()
124 (sal_Char*)pAttr->ns->prefix, in fastSaxify()
267 xmlAttrPtr const pAttr = xmlHasProp(m_aNodePtr, pName); in getAttributeNode() local
268 if (0 == pAttr) { in getAttributeNode()
273 reinterpret_cast<xmlNodePtr>(pAttr)).get()), in getAttributeNode()
296 xmlAttrPtr const pAttr = xmlHasNsProp(m_aNodePtr, pName, pNS); in getAttributeNodeNS() local
297 if (0 == pAttr) { in getAttributeNodeNS()
302 reinterpret_cast<xmlNodePtr>(pAttr)).get()), in getAttributeNodeNS()
433 xmlAttrPtr const pAttr = xmlHasProp(m_aNodePtr, pName); in removeAttribute() local
436 reinterpret_cast<xmlNodePtr>(pAttr), false)); in removeAttribute()
463 xmlAttrPtr const pAttr = xmlHasNsProp(m_aNodePtr, pName, pURI); in removeAttributeNS() local
466 reinterpret_cast<xmlNodePtr>(pAttr), false)); in removeAttributeNS()
491 xmlAttrPtr const pAttr = (xmlAttrPtr) pNode; in removeAttributeNode() local
492 if (!pAttr) { throw RuntimeException(); } in removeAttributeNode()
494 if (pAttr->parent != m_aNodePtr) in removeAttributeNode()
500 if (pAttr->doc != m_aNodePtr->doc) in removeAttributeNode()
520 xmlRemoveProp(pAttr); in removeAttributeNode()
549 xmlAttrPtr const pAttr = in setAttributeNode_Impl_Lock() local
551 if (!pAttr) { throw RuntimeException(); } in setAttributeNode_Impl_Lock()
554 if (pAttr->parent) { in setAttributeNode_Impl_Lock()
562 (pAttr->children) ? pAttr->children->content : 0); 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()