Lines Matching defs:comment
734 // <!-- comment -->
739 // <!-- comment -->
868 // Comment parses as text.
870 p = value.ParseText( p, "-->", StrPair::COMMENT );
883 XMLComment* comment = doc->NewComment( Value() ); // fixme: this will always allocate memory. Intern?
884 return comment;
1440 commentPool.Trace( "comment" );
1474 XMLComment* comment = new (commentPool.Alloc()) XMLComment( this );
1475 comment->memPool = &commentPool;
1476 comment->SetValue( str );
1477 return comment;
1927 void XMLPrinter::PushComment( const char* comment )
1937 Print( "<!--%s-->", comment );
2004 bool XMLPrinter::Visit( const XMLComment& comment )
2006 PushComment( comment.Value() );