/aoo41x/main/filter/source/xsltfilter/com/sun/star/comp/xsltfilter/ |
H A D | Base64.java | 587 java.io.ByteArrayOutputStream baos = null; in encodeObject() local 599 baos = new java.io.ByteArrayOutputStream(); in encodeObject() 623 try{ baos.close(); } catch( Exception e ){} in encodeObject() 633 return new String( baos.toByteArray() ); in encodeObject() 728 java.io.ByteArrayOutputStream baos = null; in encodeBytes() local 736 baos = new java.io.ByteArrayOutputStream(); in encodeBytes() 752 try{ baos.close(); } catch( Exception e ){} in encodeBytes() 762 return new String( baos.toByteArray() ); in encodeBytes() 1024 java.io.ByteArrayOutputStream baos = null; in decode() local 1036 baos.write(buffer,0,length); in decode() [all …]
|
/aoo41x/main/scripting/workben/installer/ |
H A D | ExceptionTraceHelper.java | 32 ByteArrayOutputStream baos = null; in getTrace() local 37 baos = new ByteArrayOutputStream( 128 ); in getTrace() 38 ps = new PrintStream( baos ); in getTrace() 45 if ( baos != null ) in getTrace() 47 baos.close(); in getTrace()
|
/aoo41x/main/scripting/java/com/sun/star/script/framework/log/ |
H A D | LogUtils.java | 61 ByteArrayOutputStream baos = null; in getTrace() local 66 baos = new ByteArrayOutputStream( ); in getTrace() 67 ps = new PrintStream( baos ); in getTrace() 74 if ( baos != null ) in getTrace() 76 baos.close(); in getTrace()
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/xslt/ |
H A D | DocumentDeserializerImpl.java | 126 ByteArrayOutputStream baos =null; in deserialize() local 133 baos = transform(domDoc); in deserialize() 138 sxwDoc.setContentDOM(dBuilder.parse(new ByteArrayInputStream(baos.toByteArray()))); in deserialize() 184 ByteArrayOutputStream baos= new ByteArrayOutputStream(); in transform() local 213 transformer.transform(xmlDomSource,new StreamResult(baos)); in transform() 232 return baos; in transform()
|
H A D | DocumentSerializerImpl.java | 112 ByteArrayOutputStream baos= new ByteArrayOutputStream(); in serialize() local 182 baos=transform(domDoc); in serialize() 189 …MDocument)pluginFactory.createDeviceDocument(docName,new ByteArrayInputStream(baos.toByteArray())); in serialize() 237 ByteArrayOutputStream baos= new ByteArrayOutputStream(); in transform() local 268 transformer.transform(xmlDomSource, new StreamResult(baos)); in transform() 288 return baos; in transform()
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/dom/ |
H A D | DOMDocument.java | 248 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in docToBytes() local 273 meth.invoke(doc, new Object [] { baos } ); in docToBytes() 283 meth.invoke(doc, new Object [] { baos } ); in docToBytes() 305 Object serializer = con.newInstance(new Object [] { baos, null } ); in docToBytes() 325 meth.invoke(serializer, new Object [] { doc, baos } ); in docToBytes() 353 byte bytes[] = baos.toByteArray(); in docToBytes()
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/ |
H A D | PalmDocument.java | 104 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in read() local 108 baos.write(buf, 0, n); in read() 110 byte[] bytearr = baos.toByteArray(); in read()
|
/aoo41x/main/xmerge/source/palmtests/qa/comparator/ |
H A D | XmlZipExtract.java | 129 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in readStream() local 133 baos.write(buffer, 0, eof); in readStream() 136 return baos.toByteArray(); in readStream()
|
H A D | OfficeZip.java | 102 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in read() local 108 baos.write(bytes, 0, len); in read() 111 entry.bytes = baos.toByteArray(); in read()
|
/aoo41x/main/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/ |
H A D | OfficeDocument.java | 856 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in docToBytes() local 882 meth.invoke(doc, new Object [] { baos } ); in docToBytes() 893 meth.invoke(doc, new Object [] { baos } ); in docToBytes() 917 Object serializer = con.newInstance(new Object [] { baos, null } ); in docToBytes() 937 meth.invoke(serializer, new Object [] { doc, baos } ); in docToBytes() 964 byte bytes[] = baos.toByteArray(); in docToBytes()
|
H A D | OfficeZip.java | 101 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in read() local 107 baos.write(buffer, 0, len); in read() 110 byte bytes[] = baos.toByteArray(); in read()
|