Lines Matching refs:XMLComment
484 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool in Identify()
485 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool in Identify()
495 returnNode = new (commentPool.Alloc()) XMLComment( this ); in Identify()
855 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in XMLComment
860 XMLComment::~XMLComment() in ~XMLComment()
866 char* XMLComment::ParseDeep( char* p, StrPair* ) in ParseDeep()
878 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
883 …XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. I… in ShallowClone()
888 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
894 bool XMLComment::Accept( XMLVisitor* visitor ) const in Accept()
1472 XMLComment* XMLDocument::NewComment( const char* str ) in NewComment()
1474 XMLComment* comment = new (commentPool.Alloc()) XMLComment( this ); in NewComment()
2004 bool XMLPrinter::Visit( const XMLComment& comment ) in Visit()