Lines Matching refs:xmlChar

44 xmlChar* ous_to_xmlstr( const rtl::OUString& oustr )   in ous_to_xmlstr()
47 return xmlStrndup( ( xmlChar* )ostr.getStr(), ( int )ostr.getLength() ) ; in ous_to_xmlstr()
54 xmlChar* ous_to_nxmlstr( const rtl::OUString& oustr, int& length ) in ous_to_nxmlstr()
59 return xmlStrndup( ( xmlChar* )ostr.getStr(), length ) ; in ous_to_nxmlstr()
65 rtl::OUString xmlchar_to_ous( const xmlChar* pChar, int length ) in xmlchar_to_ous()
80 rtl::OUString xmlstr_to_ous( const xmlChar* pStr ) in xmlstr_to_ous()
96 const xmlChar** attrlist_to_nxmlstr( const cssu::Sequence< cssxcsax::XMLAttribute >& aAttributes ) in attrlist_to_nxmlstr()
98 xmlChar* attname = NULL ; in attrlist_to_nxmlstr()
99 xmlChar* attvalue = NULL ; in attrlist_to_nxmlstr()
100 const xmlChar** attrs = NULL ; in attrlist_to_nxmlstr()
107 attrs = ( const xmlChar** )xmlMalloc( ( nLength * 2 + 2 ) * sizeof( xmlChar* ) ) ; in attrlist_to_nxmlstr()
309 const xmlChar* fullName = NULL ; in startElement()
310 const xmlChar** attrs = NULL ; in startElement()
322 xmlFree( ( xmlChar* )fullName ) ; in startElement()
330 xmlFree( ( xmlChar* )attrs[i] ) ; in startElement()
345 xmlChar* fullname = NULL ; in endElement()
352 xmlFree( ( xmlChar* )fullname ) ; in endElement()
363 const xmlChar* chars = NULL ; in characters()
371 xmlFree( ( xmlChar* )chars ) ; in characters()
381 const xmlChar* chars = NULL ; in ignorableWhitespace()
389 xmlFree( ( xmlChar* )chars ) ; in ignorableWhitespace()
401 xmlChar* target = NULL ; in processingInstruction()
402 xmlChar* data = NULL ; in processingInstruction()
411 xmlFree( ( xmlChar* )target ) ; in processingInstruction()
417 xmlFree( ( xmlChar* )data ) ; in processingInstruction()