• Home
  • Raw
  • Download

Lines Matching refs:XMLPrinter

2279     XMLPrinter stream( fp, compact );  in SaveFile()
2316 void XMLDocument::Print( XMLPrinter* streamer ) const in Print()
2322 XMLPrinter stdoutStreamer( stdout ); in Print()
2410 XMLPrinter::XMLPrinter( FILE* file, bool compact, int depth ) : in XMLPrinter() function in tinyxml2::XMLPrinter
2438 void XMLPrinter::Print( const char* format, ... ) in Print()
2460 void XMLPrinter::Write( const char* data, size_t size ) in Write()
2473 void XMLPrinter::Putc( char ch ) in Putc()
2486 void XMLPrinter::PrintSpace( int depth ) in PrintSpace()
2494 void XMLPrinter::PrintString( const char* p, bool restricted ) in PrintString()
2549 void XMLPrinter::PushHeader( bool writeBOM, bool writeDec ) in PushHeader()
2561 void XMLPrinter::OpenElement( const char* name, bool compactMode ) in OpenElement()
2582 void XMLPrinter::PushAttribute( const char* name, const char* value ) in PushAttribute()
2593 void XMLPrinter::PushAttribute( const char* name, int v ) in PushAttribute()
2601 void XMLPrinter::PushAttribute( const char* name, unsigned v ) in PushAttribute()
2609 void XMLPrinter::PushAttribute(const char* name, int64_t v) in PushAttribute()
2617 void XMLPrinter::PushAttribute( const char* name, bool v ) in PushAttribute()
2625 void XMLPrinter::PushAttribute( const char* name, double v ) in PushAttribute()
2633 void XMLPrinter::CloseElement( bool compactMode ) in CloseElement()
2661 void XMLPrinter::SealElementIfJustOpened() in SealElementIfJustOpened()
2671 void XMLPrinter::PushText( const char* text, bool cdata ) in PushText()
2686 void XMLPrinter::PushText( int64_t value ) in PushText()
2693 void XMLPrinter::PushText( int value ) in PushText()
2701 void XMLPrinter::PushText( unsigned value ) in PushText()
2709 void XMLPrinter::PushText( bool value ) in PushText()
2717 void XMLPrinter::PushText( float value ) in PushText()
2725 void XMLPrinter::PushText( double value ) in PushText()
2733 void XMLPrinter::PushComment( const char* comment ) in PushComment()
2748 void XMLPrinter::PushDeclaration( const char* value ) in PushDeclaration()
2763 void XMLPrinter::PushUnknown( const char* value ) in PushUnknown()
2778 bool XMLPrinter::VisitEnter( const XMLDocument& doc ) in VisitEnter()
2788 bool XMLPrinter::VisitEnter( const XMLElement& element, const XMLAttribute* attribute ) in VisitEnter()
2804 bool XMLPrinter::VisitExit( const XMLElement& element ) in VisitExit()
2811 bool XMLPrinter::Visit( const XMLText& text ) in Visit()
2818 bool XMLPrinter::Visit( const XMLComment& comment ) in Visit()
2824 bool XMLPrinter::Visit( const XMLDeclaration& declaration ) in Visit()
2831 bool XMLPrinter::Visit( const XMLUnknown& unknown ) in Visit()