Home
last modified time | relevance | path

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

/reactos/sdk/tools/xml2sdb/
H A Dtinyxml2.h104 class XMLComment; variable
639 virtual XMLComment* ToComment() { in ToComment()
661 virtual const XMLComment* ToComment() const { in ToComment()
935 class TINYXML2_LIB XMLComment : public XMLNode
939 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 supported
959 XMLComment& operator=( const XMLComment& ); // not supported
[all …]
H A Dtinyxml2.cpp647 returnNode = new (_commentPool.Alloc()) XMLComment( this ); in Identify()
1094 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in tinyxml2::XMLComment
1099 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 …]