Home | History | Annotate | Download | only in tinyxml2

Lines Matching full:xmldeclaration

485     TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) );    // use same memory pool

490 returnNode = new (commentPool.Alloc()) XMLDeclaration( this );
900 // --------- XMLDeclaration ---------- //
902 XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc )
907 XMLDeclaration::~XMLDeclaration()
909 //printf( "~XMLDeclaration\n" );
913 char* XMLDeclaration::ParseDeep( char* p, StrPair* )
925 XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const
930 XMLDeclaration* dec = doc->NewDeclaration( Value() ); // fixme: this will always allocate memory. Intern?
935 bool XMLDeclaration::ShallowEqual( const XMLNode* compare ) const
942 bool XMLDeclaration::Accept( XMLVisitor* visitor ) const
1490 XMLDeclaration* XMLDocument::NewDeclaration( const char* str )
1492 XMLDeclaration* dec = new (commentPool.Alloc()) XMLDeclaration( this );
2010 bool XMLPrinter::Visit( const XMLDeclaration& declaration )