Searched defs:out (Results 1 - 25 of 142) sorted by relevance

123456

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DEOLConvertingOutputStream.java26 public EOLConvertingOutputStream(OutputStream out) { argument
27 super(out);
/packages/apps/Email/src/com/android/email/mail/transport/
H A DStatusOutputStream.java29 public StatusOutputStream(OutputStream out) { argument
30 super(out);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DBody.java25 public void writeTo(OutputStream out) throws IOException, MessagingException; argument
H A DBase64Body.java30 // Because we consume the input stream, we can only write out once
44 * @param out Stream to write to
50 public void writeTo(OutputStream out) argument
57 final Base64OutputStream b64out = new Base64OutputStream(out, Base64.DEFAULT);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
H A DCloseShieldOutputStream.java37 * @param out underlying output stream
39 public CloseShieldOutputStream(OutputStream out) { argument
40 super(out);
49 out = new ClosedOutputStream();
H A DTeeOutputStream.java36 * @param out the main OutputStream
39 public TeeOutputStream( OutputStream out, OutputStream branch ) { argument
40 super(out);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
H A DBodyPart.java38 public void writeTo(OutputStream out) throws IOException { argument
39 getHeader().writeTo(out);
40 getBody().writeTo(out);
H A DBody.java50 * @param out the stream to write to.
53 void writeTo(OutputStream out) throws IOException; argument
H A DMemoryBinaryBody.java29 //BEGIN android-changed: Stubbing out logging
59 ByteArrayOutputStream out = new ByteArrayOutputStream();
60 IOUtils.copy(is, out);
61 out.close();
62 tempFile = out.toByteArray();
89 public void writeTo(OutputStream out) throws IOException { argument
90 IOUtils.copy(getInputStream(),out);
H A DMemoryTextBody.java32 //BEGIN android-changed: Stubbing out logging
64 ByteArrayOutputStream out = new ByteArrayOutputStream();
65 IOUtils.copy(is, out);
66 out.close();
67 tempFile = out.toByteArray();
115 public void writeTo(OutputStream out) throws IOException { argument
116 IOUtils.copy(new ByteArrayInputStream(tempFile), out);
H A DTempFileBinaryBody.java27 //BEGIN android-changed: Stubbing out logging
59 OutputStream out = tempFile.getOutputStream();
60 IOUtils.copy(is, out);
61 out.close();
88 public void writeTo(OutputStream out) throws IOException { argument
89 IOUtils.copy(getInputStream(),out);
H A DTempFileTextBody.java30 //BEGIN android-changed: Stubbing out logging
64 OutputStream out = tempFile.getOutputStream();
65 IOUtils.copy(is, out);
66 out.close();
114 public void writeTo(OutputStream out) throws IOException { argument
115 IOUtils.copy(tempFile.getInputStream(), out);
/packages/services/Telephony/src/com/android/phone/common/mail/
H A DBody.java24 public void writeTo(OutputStream out) throws IOException, MessagingException; argument
/packages/apps/Camera2/src/com/android/camera/exif/
H A DOrderedDataOutputStream.java28 public OrderedDataOutputStream(OutputStream out) { argument
29 super(out);
40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetNative.java35 * @param out the resulting tiny planet.
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize, argument
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java28 public OrderedDataOutputStream(OutputStream out) { argument
29 super(out);
40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DMatrixUtils.h63 static void convert9to33(double out[3][3], double in[9]) { argument
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6];
73 out[2][1] = in[7];
74 out[
121 convert33to9(double out[9], double in[3][3]) argument
[all...]
H A DtrsMatrix.cpp79 void inv33d(const double m[3][3], double out[3][3]) argument
83 out[0][0] = (m[1][1]*m[2][2] - m[1][2]*m[2][1]) / det;
84 out[1][0] = (m[1][2]*m[2][0] - m[1][0]*m[2][2]) / det;
85 out[2][0] = (m[1][0]*m[2][1] - m[1][1]*m[2][0]) / det;
87 out[0][1] = (m[0][2]*m[2][1] - m[0][1]*m[2][2]) / det;
88 out[1][1] = (m[0][0]*m[2][2] - m[0][2]*m[2][0]) / det;
89 out[2][1] = (m[0][1]*m[2][0] - m[0][0]*m[2][1]) / det;
91 out[0][2] = (m[0][1]*m[1][2] - m[0][2]*m[1][1]) / det;
92 out[1][2] = (m[0][2]*m[1][0] - m[0][0]*m[1][2]) / det;
93 out[
[all...]
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DOrderedDataOutputStream.java28 public OrderedDataOutputStream(OutputStream out) { argument
29 super(out);
40 out.write(mByteBuffer.array(), 0, 2);
47 out.write(mByteBuffer.array());
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
H A DBinaryTempFileBody.java71 public void writeTo(OutputStream out) throws IOException, MessagingException { argument
74 out, Base64.CRLF | Base64.NO_CLOSE);
H A DTextBody.java38 public void writeTo(OutputStream out) throws IOException, MessagingException { argument
40 out.write(Base64.encode(bytes, Base64.CRLF));
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DEscaper.java87 * @param out the underlying {@code Appendable} to append escaped output to
88 * @return an {@code Appendable} which passes text to {@code out} after escaping it
90 public abstract Appendable escape(Appendable out); argument
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/utils/
H A DFileTransforms.java25 public static OutputStream getCryptedStream(OutputStream out) { argument
27 return out;
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
H A DCompress.java30 public static OutputStream getCompressedStream(final OutputStream out) throws IOException { argument
31 return new GZIPOutputStream(out);
H A DCrypt.java27 public static OutputStream getCryptedStream(final OutputStream out) { argument
29 return out;

Completed in 622 milliseconds

123456