Lines Matching refs:XMLPrinter
2382 XMLPrinter stream( fp, compact ); in SaveFile()
2419 void XMLDocument::Print( XMLPrinter* streamer ) const in Print()
2425 XMLPrinter stdoutStreamer( stdout ); in Print()
2513 XMLPrinter::XMLPrinter( FILE* file, bool compact, int depth ) : in XMLPrinter() function in tinyxml2::XMLPrinter
2541 void XMLPrinter::Print( const char* format, ... ) in Print()
2563 void XMLPrinter::Write( const char* data, size_t size ) in Write()
2576 void XMLPrinter::Putc( char ch ) in Putc()
2589 void XMLPrinter::PrintSpace( int depth ) in PrintSpace()
2597 void XMLPrinter::PrintString( const char* p, bool restricted ) in PrintString()
2652 void XMLPrinter::PushHeader( bool writeBOM, bool writeDec ) in PushHeader()
2664 void XMLPrinter::OpenElement( const char* name, bool compactMode ) in OpenElement()
2683 void XMLPrinter::PushAttribute( const char* name, const char* value ) in PushAttribute()
2694 void XMLPrinter::PushAttribute( const char* name, int v ) in PushAttribute()
2702 void XMLPrinter::PushAttribute( const char* name, unsigned v ) in PushAttribute()
2710 void XMLPrinter::PushAttribute(const char* name, int64_t v) in PushAttribute()
2718 void XMLPrinter::PushAttribute(const char* name, uint64_t v) in PushAttribute()
2726 void XMLPrinter::PushAttribute( const char* name, bool v ) in PushAttribute()
2734 void XMLPrinter::PushAttribute( const char* name, double v ) in PushAttribute()
2742 void XMLPrinter::CloseElement( bool compactMode ) in CloseElement()
2770 void XMLPrinter::SealElementIfJustOpened() in SealElementIfJustOpened()
2780 void XMLPrinter::PushText( const char* text, bool cdata ) in PushText()
2796 void XMLPrinter::PushText( int64_t value ) in PushText()
2804 void XMLPrinter::PushText( uint64_t value ) in PushText()
2812 void XMLPrinter::PushText( int value ) in PushText()
2820 void XMLPrinter::PushText( unsigned value ) in PushText()
2828 void XMLPrinter::PushText( bool value ) in PushText()
2836 void XMLPrinter::PushText( float value ) in PushText()
2844 void XMLPrinter::PushText( double value ) in PushText()
2852 void XMLPrinter::PushComment( const char* comment ) in PushComment()
2867 void XMLPrinter::PushDeclaration( const char* value ) in PushDeclaration()
2882 void XMLPrinter::PushUnknown( const char* value ) in PushUnknown()
2897 bool XMLPrinter::VisitEnter( const XMLDocument& doc ) in VisitEnter()
2907 bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute ) in VisitEnter()
2923 bool XMLPrinter::VisitExit( const XMLElement& element ) in VisitExit()
2930 bool XMLPrinter::Visit( const XMLText& text ) in Visit()
2937 bool XMLPrinter::Visit( const XMLComment& comment ) in Visit()
2943 bool XMLPrinter::Visit( const XMLDeclaration& declaration ) in Visit()
2950 bool XMLPrinter::Visit( const XMLUnknown& unknown ) in Visit()