Search Results
OK to copy?
Examples 1 through 10 of
19 (0.0010 seconds)
Class:
org.apache.batik.dom.SerializationTest
©,
Rating:
100% of 1,
C2
Class: org.apache.batik.dom.SerializationTest ©, Rating: 0% of 0, C2
Class: org.apache.batik.svggen.SVGAccuracyTestValidator ©, Rating: 0% of 0, C1
Class: org.apache.batik.svggen.SVGAccuracyTestValidator ©, Rating: 0% of 0, C1
Class: org.apache.batik.svggen.JPainterCompare ©, Rating: 0% of 0, C1
Class: org.apache.batik.ext.awt.image.codec.FileCacheSeekableStream ©, Rating: 0% of 0, C1
Class: org.apache.batik.test.util.ImageCompareTest ©, Rating: 0% of 0, C1
Class: org.apache.batik.test.svg.SVGRenderingAccuracyTestValidator ©, Rating: 0% of 0, C1
Class: org.apache.batik.test.svg.SVGRenderingAccuracyTestValidator ©, Rating: 0% of 0, C1
Class: org.apache.batik.test.svg.SVGRenderingAccuracyTestValidator ©, Rating: 0% of 0, C1
091
092 File ser1 = File.createTempFile("doc1", "ser");
093 File ser2 = File.createTempFile("doc2", "ser");
094
095 try {
Class: org.apache.batik.dom.SerializationTest ©, Rating: 0% of 0, C2
090 url.openStream());
091
092 File ser1 = File.createTempFile("doc1", "ser");
093 File ser2 = File.createTempFile("doc2", "ser");
094
Class: org.apache.batik.svggen.SVGAccuracyTestValidator ©, Rating: 0% of 0, C1
182 static class SameAsReferenceImage extends ValidPainterTest {
183 public TestReport runImpl() throws Exception {
184 File tmpFile = File.createTempFile("SVGReference",
185 null);
186 tmpFile.deleteOnExit();
Class: org.apache.batik.svggen.SVGAccuracyTestValidator ©, Rating: 0% of 0, C1
165 static class DiffWithReferenceImage extends ValidPainterTest {
166 public TestReport runImpl() throws Exception {
167 File tmpFile = File.createTempFile("EmptySVGReference",
168 null);
169 tmpFile.deleteOnExit();
Class: org.apache.batik.svggen.JPainterCompare ©, Rating: 0% of 0, C1
172 File tmpFile = null;
173 try{
174 tmpFile = File.createTempFile(CONFIG_TMP_FILE_PREFIX,
175 ".svg");
176
Class: org.apache.batik.ext.awt.image.codec.FileCacheSeekableStream ©, Rating: 0% of 0, C1
107 throws IOException {
108 this.stream = stream;
109 this.cacheFile = File.createTempFile("jai-FCSS-", ".tmp");
110 cacheFile.deleteOnExit();
111 this.cache = new RandomAccessFile(cacheFile, "rw");
Class: org.apache.batik.test.util.ImageCompareTest ©, Rating: 0% of 0, C1
309 throws IOException {
310
311 return File.createTempFile(TEMP_FILE_PREFIX,
312 TEMP_FILE_SUFFIX + imageType,
313 null);
Class: org.apache.batik.test.svg.SVGRenderingAccuracyTestValidator ©, Rating: 0% of 0, C1
166 TranscoderInput validSrc = new TranscoderInput(new StringReader(svgContent));
167
168 File tmpFile = File.createTempFile(SVGRenderingAccuracyTest.TEMP_FILE_PREFIX,
169 SVGRenderingAccuracyTest.TEMP_FILE_SUFFIX);
170
Class: org.apache.batik.test.svg.SVGRenderingAccuracyTestValidator ©, Rating: 0% of 0, C1
152 */
153 public static URL createSVGSourceURL(String svgContent) throws Exception{
154 File tmpFile = File.createTempFile(SVGRenderingAccuracyTest.TEMP_FILE_PREFIX,
155 null);
156 FileWriter writer = new FileWriter(tmpFile);
Class: org.apache.batik.test.svg.SVGRenderingAccuracyTestValidator ©, Rating: 0% of 0, C1
339 // We use the createSVGSourceURL method to create
340 // a File that the ImageLoader is not able to load.
341 File tmpFile = File.createTempFile(SVGRenderingAccuracyTest.TEMP_FILE_PREFIX,
342 null);
343 URL refImgURL = tmpFile.toURL();