Lines Matching refs:NULL

67 	if( pChar != NULL )  in xmlchar_to_ous()
82 if( pStr != NULL ) in xmlstr_to_ous()
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()
111 return NULL ; in attrlist_to_nxmlstr()
119 if( attname != NULL && attvalue != NULL ) in attrlist_to_nxmlstr()
123 attrs[i] = NULL ; in attrlist_to_nxmlstr()
124 attrs[i+1] = NULL ; in attrlist_to_nxmlstr()
128 if( attname != NULL ) in attrlist_to_nxmlstr()
130 if( attvalue != NULL ) in attrlist_to_nxmlstr()
145 : m_pParserCtxt( NULL ), in SAXHelper()
146 m_pSaxHandler( NULL ) in SAXHelper()
173 if( m_pParserCtxt->inputTab[0] != NULL ) in SAXHelper()
175 m_pParserCtxt->inputTab[0] = NULL ; in SAXHelper()
178 if( m_pParserCtxt == NULL ) in SAXHelper()
188 else if( m_pParserCtxt->sax == NULL ) in SAXHelper()
198 m_pParserCtxt = NULL ; in SAXHelper()
219 if( m_pParserCtxt != NULL ) in ~SAXHelper()
227 m_pSaxHandler = NULL ; in ~SAXHelper()
231 m_pParserCtxt = NULL ; in ~SAXHelper()
234 if( m_pSaxHandler != NULL ) in ~SAXHelper()
237 m_pSaxHandler = NULL ; in ~SAXHelper()
278 if( m_pParserCtxt->inputTab != NULL && m_pParserCtxt->inputMax != 0 ) in startDocument()
286 if( m_pParserCtxt == NULL || m_pParserCtxt->myDoc == NULL ) in startDocument()
309 const xmlChar* fullName = NULL ; in startElement()
310 const xmlChar** attrs = NULL ; in startElement()
315 if( fullName != NULL || attrs != NULL ) in startElement()
320 if( fullName != NULL ) in startElement()
323 fullName = NULL ; in startElement()
326 if( attrs != NULL ) in startElement()
328 for( int i = 0 ; attrs[i] != NULL ; ++i ) in startElement()
331 attrs[i] = NULL ; in startElement()
335 attrs = NULL ; in startElement()
345 xmlChar* fullname = NULL ; in endElement()
350 if( fullname != NULL ) in endElement()
353 fullname = NULL ; in endElement()
363 const xmlChar* chars = NULL ; in characters()
369 if( chars != NULL ) in characters()
381 const xmlChar* chars = NULL ; in ignorableWhitespace()
387 if( chars != NULL ) in ignorableWhitespace()
401 xmlChar* target = NULL ; in processingInstruction()
402 xmlChar* data = NULL ; in processingInstruction()
409 if( target != NULL ) in processingInstruction()
412 target = NULL ; in processingInstruction()
415 if( data != NULL ) in processingInstruction()
418 data = NULL ; in processingInstruction()