Lines Matching refs:cfile
476 void TiXmlElement::Print( FILE* cfile, int depth ) const
481 fprintf( cfile, " " );
484 fprintf( cfile, "<%s", value.c_str() );
489 fprintf( cfile, " " );
490 attrib->Print( cfile, depth );
500 fprintf( cfile, " />" );
504 fprintf( cfile, ">" );
505 firstChild->Print( cfile, depth + 1 );
506 fprintf( cfile, "</%s>", value.c_str() );
510 fprintf( cfile, ">" );
516 fprintf( cfile, "\n" );
518 node->Print( cfile, depth+1 );
520 fprintf( cfile, "\n" );
522 fprintf( cfile, " " );
523 fprintf( cfile, "</%s>", value.c_str() );
687 void TiXmlDocument::Print( FILE* cfile, int depth ) const
692 node->Print( cfile, depth );
693 fprintf( cfile, "\n" );
734 void TiXmlAttribute::Print( FILE* cfile, int /*depth*/ ) const
740 fprintf( cfile, "%s", stream.str().c_str() );
799 void TiXmlComment::Print( FILE* cfile, int depth ) const
806 fprintf( cfile, " " );
809 fprintf( cfile, "%s", stream.str().c_str() );
833 void TiXmlText::Print( FILE* cfile, int depth ) const
838 fprintf( cfile, "%s", stream.str().c_str() );
872 void TiXmlDeclaration::Print( FILE* cfile, int depth ) const
877 fprintf( cfile, "%s", stream.str().c_str() );
922 void TiXmlUnknown::Print( FILE* cfile, int depth ) const
929 fprintf( cfile, " " );
930 fprintf( cfile, "%s", stream.str().c_str() );