Lines Matching refs:comment
1222 …XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Inte… in ShallowClone() local
1223 return comment; in ShallowClone()
1230 const XMLComment* comment = compare->ToComment(); in ShallowEqual() local
1231 return ( comment && XMLUtil::StringEqual( comment->Value(), Value() )); in ShallowEqual()
2100 XMLComment* comment = CreateUnlinkedNode<XMLComment>( _commentPool ); in NewComment() local
2101 comment->SetValue( str ); in NewComment()
2102 return comment; in NewComment()
2726 void XMLPrinter::PushComment( const char* comment ) in PushComment() argument
2736 Write( comment ); in PushComment()
2811 bool XMLPrinter::Visit( const XMLComment& comment ) in Visit() argument
2813 PushComment( comment.Value() ); in Visit()