Lines Matching defs:comment
168 node = todoElement->FirstChildElement(); // This skips the "PDA" comment.
261 XmlTest( "First child exists & is a comment.", true, ( node != 0 && node->ToComment() ) );
392 TiXmlComment* comment = commentHandle.Node()->ToComment();
393 assert( comment );
403 XmlTest( "Location tracking: Comment row", comment->Row(), 2 );
404 XmlTest( "Location tracking: Comment col", comment->Column(), 3 );
593 TiXmlComment comment;
594 comment.Parse( "<!--comment-->", 0, TIXML_ENCODING_UNKNOWN );
595 TiXmlComment commentCopy( comment );
598 XmlTest( "Copy/Assign: comment copy.", "comment", commentCopy.Value() );
599 XmlTest( "Copy/Assign: comment assign.", "comment", commentAssign.Value() );
898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment();
900 XmlTest( "Comment formatting.", " Somewhat<evil> ", comment->Value() );
903 str << (*comment);
904 XmlTest( "Comment streaming.", "<!-- Somewhat<evil> -->", str.c_str() );