Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:xml

74 // what is in the XML file. But it does test the basic operations,
85 "<?xml version=\"1.0\" standalone='no' >\n"
98 "<?xml version=\"1.0\" standalone=\"no\" ?>"
126 TiXmlDocument doc( "demotest.xml" );
137 TiXmlDocument doc( "demotest.xml" );
142 printf( "Could not load test file 'demotest.xml'. Error='%s'. Exiting.\n", doc.ErrorDesc() );
349 const char* error = "<?xml version=\"1.0\" standalone=\"no\" ?>\n"
362 const char* str = "\t<?xml version=\"1.0\" standalone=\"no\" ?>\t<room doors='2'>\n"
413 const char* str = "\t<?xml version=\"1.0\" standalone=\"no\" ?>\t<room doors='2'>\n"
497 TiXmlDocument doc( "utf8test.xml" );
500 printf( "WARNING: File 'utf8test.xml' not found.\n"
535 doc.SaveFile( "utf8testout.xml" );
542 FILE* saved = fopen( "utf8testout.xml", "r" );
543 FILE* verify = fopen( "utf8testverify.xml", "r" );
618 dec.Parse( "<?xml version='1.0' encoding='UTF-8'?>", 0, TIXML_ENCODING_UNKNOWN );
785 TiXmlDocument doc( "midsummerNightsDreamWithAVeryLongFilenameToConfuseTheStringHandlingRoutines.xml" );
797 "<?xml version=\"1.0\" standalone=\"no\" ?>"
803 TiXmlDocument doc( "passages.xml" );
833 FILE* textfile = fopen( "test5.xml", "w" );
836 fputs("<?xml version='1.0'?><a.elem xmi.version='2.0'/>", textfile);
840 doc.LoadFile( "test5.xml" );
846 FILE* textfile = fopen( "test6.xml", "w" );
853 bool result = doc.LoadFile( "test6.xml" );
866 "<?xml version=\"1.0\" ?>"
874 doc.SaveFile( "test7.xml" );
876 doc.LoadFile( "test7.xml" );
982 "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>"
1022 TiXmlDocument xml;
1023 xml.Parse("<text><break/>This hangs</text>");
1024 XmlTest( "Test safe error return.", xml.Error(), false );
1035 TiXmlDocument xml;
1036 xml.Parse( "<test>&#x0e;</test>" );
1038 XmlTest( "Low entities.", xml.FirstChildElement()->GetText(), result );
1039 xml.Print();