Searched defs:out (Results 26 - 50 of 80) sorted by relevance

1234

/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
H A DDoodleFilter.java45 * (no-op on the photo) until not all its doodling is out of bounds.
78 protected void writeToParcel(Parcel out) { argument
79 out.writeInt(doodles.size());
81 out.writeParcelable(doodle, 0);
H A DDuotoneFilter.java50 protected void writeToParcel(Parcel out) { argument
51 out.writeInt(firstColor);
52 out.writeInt(secondColor);
H A DFlipFilter.java49 protected void writeToParcel(Parcel out) { argument
50 out.writeBooleanArray(flips);
H A DRedEyeFilter.java59 protected void writeToParcel(Parcel out) { argument
60 out.writeInt(redeyes.size());
62 out.writeParcelable(eye, 0);
H A DStraightenFilter.java49 protected void writeToParcel(Parcel out) { argument
50 out.writeFloat(degrees);
H A DFilter.java107 protected void writeToParcel(Parcel out) { argument
/packages/apps/Browser/src/com/android/browser/homepages/
H A DRequestHandler.java53 public RequestHandler(Context context, Uri uri, OutputStream out) { argument
56 mOutput = out;
/packages/apps/Calculator/src/com/android/calculator2/
H A DHistory.java66 void write(DataOutput out) throws IOException { argument
67 out.writeInt(mEntries.size());
69 entry.write(out);
71 out.writeInt(mPos);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
H A DMimeHeader.java124 public void writeTo(OutputStream out) throws IOException, MessagingException { argument
125 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024);
H A DMimeMultipart.java85 public void writeTo(OutputStream out) throws IOException, MessagingException { argument
86 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024);
96 bodyPart.writeTo(out);
H A DMimeBodyPart.java182 * Write the MimeMessage out in MIME format.
184 public void writeTo(OutputStream out) throws IOException, MessagingException { argument
185 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out), 1024);
186 mHeader.writeTo(out);
190 mBody.writeTo(out);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DPart.java51 public void writeTo(OutputStream out) throws IOException, MessagingException; argument
/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
H A DDeferredFileOutputStream.java242 * @param out output stream to write to.
245 public void writeTo(OutputStream out) throws IOException argument
257 memoryOutputStream.writeTo(out);
263 IOUtils.copy(fis, out);
H A DLockableFileWriter.java58 private final Writer out; field in class:LockableFileWriter
183 out = initWriter(file, encoding, append);
269 out.close();
282 out.write(idx);
291 out.write(chr);
302 out.write(chr, st, end);
311 out.write(str);
322 out.write(str, st, end);
330 out.flush();
H A DByteArrayOutputStream.java245 * @param out the output stream to write to
249 public synchronized void writeTo(OutputStream out) throws IOException { argument
254 out.write(buf, 0, c);
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
H A DEntity.java166 * @param out the outputstream to write to
169 public abstract void writeTo(OutputStream out) throws IOException; argument
H A DMultipart.java168 public void writeTo(OutputStream out) throws IOException { argument
172 BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out, CharsetUtil.getCharset(getCharset())),8192);
178 bodyParts.get(i).writeTo(out);
/packages/apps/Email/src/com/beetstra/jutf7/
H A DUTF7StyleCharsetDecoder.java64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { argument
72 if (!out.hasRemaining())
74 out.put((char)shift);
79 if (!out.hasRemaining())
81 CoderResult result = handleBase64(in, out, b);
94 if (!out.hasRemaining())
96 out.put((char)b);
115 * @param out The output buffer
120 private CoderResult handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) { argument
130 out
148 implFlush(CharBuffer out) argument
[all...]
H A DUTF7StyleCharsetEncoder.java102 * @param out The output byte buffer
105 protected CoderResult implFlush(ByteBuffer out) { argument
107 if (out.remaining() < 2)
110 out.put(base64.getChar(sextet));
111 out.put(unshift);
141 * @param out The output byte buffer
144 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) { argument
146 if (out.remaining() < 4)
150 unshift(out, ch);
151 out
180 unshift(ByteBuffer out, char ch) argument
203 encodeBase64(char ch, ByteBuffer out) argument
[all...]
/packages/apps/Gallery/tests/src/com/android/camera/gallery/
H A DMockImageList.java63 public void writeToParcel(Parcel out, int flags) { argument
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DBoxBlurFilter.java71 int[] in, int[] out, int width, int height, int mode) {
85 out[write] = 0xFF000000
70 applyOneDimension( int[] in, int[] out, int width, int height, int mode) argument
/packages/apps/MusicFX/src/com/android/musicfx/
H A DCompatibility.java239 private static void log(String out) { argument
241 Log.d(TAG, out);
/packages/apps/Phone/src/com/android/phone/
H A DBitmapUtils.java121 private static void gaussianBlurFilter(int[] in, int[] out, int width, int height) { argument
145 out[outPos] = (alpha << 24) | ((red >> 8) << RED_MASK_SHIFT)
/packages/experimental/AndroidVendorSecurityTool/src/com/google/android/googleapps/
H A DGoogleLoginCredentialsResult.java115 public void writeToParcel(Parcel out, int flags) { argument
116 out.writeString(mAccount);
117 out.writeString(mCredentialsString);
119 out.writeInt(1);
120 mCredentialsIntent.writeToParcel(out, 0);
122 out.writeInt(0);
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DCallDetailActivityTest.java282 public void copyBetweenStreams(InputStream in, OutputStream out) throws IOException { argument
288 out.write(buffer, 0, bytesRead);

Completed in 318 milliseconds

1234