Lines Matching refs:XMLPrinter

1590     XMLPrinter stream( fp );

1622 void XMLDocument::Print( XMLPrinter* streamer )
1624 XMLPrinter stdStreamer( stdout );
1659 XMLPrinter::XMLPrinter( FILE* file, bool compact ) :
1685 void XMLPrinter::Print( const char* format, ... )
1721 void XMLPrinter::PrintSpace( int depth )
1729 void XMLPrinter::PrintString( const char* p, bool restricted )
1767 void XMLPrinter::PushHeader( bool writeBOM, bool writeDec )
1779 void XMLPrinter::OpenElement( const char* name )
1798 void XMLPrinter::PushAttribute( const char* name, const char* value )
1807 void XMLPrinter::PushAttribute( const char* name, int v )
1815 void XMLPrinter::PushAttribute( const char* name, unsigned v )
1823 void XMLPrinter::PushAttribute( const char* name, bool v )
1831 void XMLPrinter::PushAttribute( const char* name, double v )
1839 void XMLPrinter::CloseElement()
1863 void XMLPrinter::SealElement()
1870 void XMLPrinter::PushText( const char* text, bool cdata )
1887 void XMLPrinter::PushText( int value )
1895 void XMLPrinter::PushText( unsigned value )
1903 void XMLPrinter::PushText( bool value )
1911 void XMLPrinter::PushText( float value )
1919 void XMLPrinter::PushText( double value )
1927 void XMLPrinter::PushComment( const char* comment )
1941 void XMLPrinter::PushDeclaration( const char* value )
1955 void XMLPrinter::PushUnknown( const char* value )
1969 bool XMLPrinter::VisitEnter( const XMLDocument& doc )
1979 bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute )
1990 bool XMLPrinter::VisitExit( const XMLElement& )
1997 bool XMLPrinter::Visit( const XMLText& text )
2004 bool XMLPrinter::Visit( const XMLComment& comment )
2010 bool XMLPrinter::Visit( const XMLDeclaration& declaration )
2017 bool XMLPrinter::Visit( const XMLUnknown& unknown )