Lines Matching refs:aExport

149     ::rtl::OUString aExport;  in TEST_F()
152 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
154 ASSERT_TRUE(!aExport.compareToAscii(sExportString) ) << "exporting rectangle to SVG-D"; in TEST_F()
155 …ASSERT_TRUE(tools::importFromSvgD( aPoly, aExport, false, 0 )) << "importing simple rectangle from… in TEST_F()
156 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
157 …ASSERT_TRUE(!aExport.compareToAscii(sExportString)) << "exporting rectangle to SVG-D (round-trip)"; in TEST_F()
160 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
180 …ASSERT_TRUE(!aExport.compareToAscii(sExportStringSimpleBezier)) << "exporting bezier polygon to SV… in TEST_F()
187 …ASSERT_TRUE(tools::importFromSvgD( aReImport, aExport, false, 0)) << "importing simple bezier poly… in TEST_F()
191 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
207 …ASSERT_TRUE(tools::importFromSvgD( aReImport, aExport, false, 0)) << "re-importing '@' from SVG-D"; in TEST_F()
210 ASSERT_TRUE(!aExport.compareToAscii(sExportString1)) << "exporting '@' to SVG-D"; in TEST_F()
211 …ASSERT_TRUE(tools::importFromSvgD( aPoly, aExport, false, 0 )) << "importing '@' from SVG-D (round… in TEST_F()
212 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
213 ASSERT_TRUE(!aExport.compareToAscii(sExportString1)) << "exporting '@' to SVG-D (round-trip)"; in TEST_F()
217 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
239 ASSERT_TRUE(!aExport.compareToAscii(sExportString2)) << "exporting complex polygon to SVG-D"; in TEST_F()
240 …ASSERT_TRUE(tools::importFromSvgD( aPoly, aExport, false, 0 )) << "importing complex polygon from … in TEST_F()
241 aExport = tools::exportToSvgD( aPoly, true, true, false ); in TEST_F()
242 …ASSERT_TRUE(!aExport.compareToAscii(sExportString2)) << "exporting complex polygon to SVG-D (round… in TEST_F()
246 aExport = tools::exportToSvgD( B2DPolyPolygon(aRect), false, false, false ); in TEST_F()
249 ASSERT_TRUE(!aExport.compareToAscii(sExportStringRect)) << "exporting to rectangle svg-d string"; in TEST_F()