Lines Matching refs:XMLComment
704 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool in Identify()
705 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool in Identify()
713 returnNode = CreateUnlinkedNode<XMLComment>( _commentPool ); in Identify()
1224 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment() function in tinyxml2::XMLComment
1229 XMLComment::~XMLComment() in ~XMLComment()
1234 char* XMLComment::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep()
1245 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1250 …XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Inte… in ShallowClone()
1255 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1258 const XMLComment* comment = compare->ToComment(); in ShallowEqual()
1263 bool XMLComment::Accept( XMLVisitor* visitor ) const in Accept()
1971 XMLComment* XMLElement::InsertNewComment(const char* comment) in InsertNewComment()
1973 XMLComment* node = _document->NewComment(comment); in InsertNewComment()
2205 XMLComment* XMLDocument::NewComment( const char* str ) in NewComment()
2207 XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); in NewComment()
2937 bool XMLPrinter::Visit( const XMLComment& comment ) in Visit()