Searched refs:XMLComment (Results 1 – 2 of 2) sorted by relevance
95 class XMLComment; variable391 virtual bool Visit( const XMLComment& /*comment*/ ) { in Visit() argument515 virtual XMLComment* ToComment() { in ToComment()534 virtual const XMLComment* ToComment() const { in ToComment()798 class XMLComment : public XMLNode802 virtual XMLComment* ToComment() { in ToComment()805 virtual const XMLComment* ToComment() const { in ToComment()816 XMLComment( XMLDocument* doc );817 virtual ~XMLComment();818 XMLComment( const XMLComment& ); // not supported[all …]
508 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool in Identify()509 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool in Identify()519 returnNode = new (commentPool.Alloc()) XMLComment( this ); in Identify()879 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in XMLComment884 XMLComment::~XMLComment() in ~XMLComment()890 char* XMLComment::ParseDeep( char* p, StrPair* ) in ParseDeep()902 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()907 …XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. I… in ShallowClone()912 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()918 bool XMLComment::Accept( XMLVisitor* visitor ) const in Accept()[all …]