Home | History | Annotate | Download | only in tinyxml2

Lines Matching refs:XMLDocument

451 char* XMLDocument::Identify( char* p, XMLNode** node )

527 bool XMLDocument::Accept( XMLVisitor* visitor ) const
543 XMLNode::XMLNode( XMLDocument* doc ) :
830 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const
855 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc )
878 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const
902 XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc )
925 XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const
949 XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc )
972 XMLNode* XMLUnknown::ShallowClone( XMLDocument* doc ) const
1108 XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ),
1366 XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const
1418 // --------- XMLDocument ----------- //
1419 XMLDocument::XMLDocument( bool _processEntities ) :
1432 XMLDocument::~XMLDocument()
1451 void XMLDocument::InitDocument()
1463 XMLElement* XMLDocument::NewElement( const char* name )
1472 XMLComment* XMLDocument::NewComment( const char* str )
1481 XMLText* XMLDocument::NewText( const char* str )
1490 XMLDeclaration* XMLDocument::NewDeclaration( const char* str )
1499 XMLUnknown* XMLDocument::NewUnknown( const char* str )
1508 int XMLDocument::LoadFile( const char* filename )
1531 int XMLDocument::LoadFile( FILE* fp )
1566 int XMLDocument::SaveFile( const char* filename )
1588 int XMLDocument::SaveFile( FILE* fp )
1596 int XMLDocument::Parse( const char* p )
1622 void XMLDocument::Print( XMLPrinter* streamer )
1631 void XMLDocument::SetError( int error, const char* str1, const char* str2 )
1639 void XMLDocument::PrintError() const
1653 printf( "XMLDocument error id=%d str1=%s str2=%s\n",
1969 bool XMLPrinter::VisitEnter( const XMLDocument& doc )