Home
last modified time | relevance | path

Searched refs:XMLComment (Results 1 – 2 of 2) sorted by relevance

/external/tinyxml2/
Dtinyxml2.h95 class XMLComment; variable
352 virtual bool Visit( const XMLComment& /*comment*/ ) { return true; } in Visit() argument
446 …virtual XMLComment* ToComment() { return 0; } ///< Safely cast to a Comment, or n… in ToComment()
453 virtual const XMLComment* ToComment() const { return 0; } in ToComment()
652 class XMLComment : public XMLNode
656 virtual XMLComment* ToComment() { return this; } in ToComment()
657 virtual const XMLComment* ToComment() const { return this; } in ToComment()
666 XMLComment( XMLDocument* doc );
667 virtual ~XMLComment();
668 XMLComment( const XMLComment& ); // not supported
[all …]
Dtinyxml2.cpp484 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()
883XMLComment* 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()
[all …]