Searched refs:XMLComment (Results 1 – 2 of 2) sorted by relevance
104 class XMLComment; variable639 virtual XMLComment* ToComment() { in ToComment()661 virtual const XMLComment* ToComment() const { in ToComment()935 class TINYXML2_LIB XMLComment : public XMLNode939 virtual XMLComment* ToComment() { in ToComment()942 virtual const XMLComment* ToComment() const { in ToComment()952 XMLComment( XMLDocument* doc );953 virtual ~XMLComment();958 XMLComment( const XMLComment& ); // not supported959 XMLComment& operator=( const XMLComment& ); // not supported[all …]
647 returnNode = new (_commentPool.Alloc()) XMLComment( this ); in Identify()1094 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in tinyxml2::XMLComment1099 XMLComment::~XMLComment() in ~XMLComment()1104 char* XMLComment::ParseDeep( char* p, StrPair* ) in ParseDeep()1116 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()1126 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()1129 const XMLComment* comment = compare->ToComment(); in ShallowEqual()1134 bool XMLComment::Accept( XMLVisitor* visitor ) const in Accept()1833 XMLComment* XMLDocument::NewComment( const char* str ) in NewComment()1836 XMLComment* comment = new (_commentPool.Alloc()) XMLComment( this ); in NewComment()[all …]