Searched refs:out (Results 151 - 175 of 185) sorted by relevance

12345678

/packages/apps/Email/
H A DAndroid.mk44 # leaving out code which is tested by other means (e.g. static libraries) that
/packages/apps/Email/src/com/android/email/
H A DLegacyConversions.java303 FileOutputStream out = new FileOutputStream(saveAs);
304 long copySize = IOUtils.copy(in, out);
306 out.close();
/packages/apps/Mms/src/com/android/mms/model/
H A DSlideshowModel.java298 ByteArrayOutputStream out = new ByteArrayOutputStream();
299 SmilXmlSerializer.serialize(document, out);
304 smilPart.setData(out.toByteArray());
665 // Figure out if we have any media items that need to be resized and total up the
716 // This will write out all the new parts to:
/packages/apps/Camera/jni/feature_stab/src/dbreg/
H A Dvp_motionmodel.h273 int vp_invert_motion(const VP_MOTION* in,VP_MOTION* out);
275 int vp_zoom_motion2d(VP_MOTION* in, VP_MOTION* out,
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLView.java405 public boolean getBoundsOf(GLView descendant, Rect out) { argument
416 out.set(xoffset, yoffset, xoffset + descendant.getWidth(),
H A DTileImageView.java293 private void getRange(Rect out, int cX, int cY, int level, int rotation) { argument
294 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
303 private void getRange(Rect out, argument
329 out.set(left, top, right, bottom);
/packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
H A Dvp_motionmodel.h273 int vp_invert_motion(const VP_MOTION* in,VP_MOTION* out);
275 int vp_zoom_motion2d(VP_MOTION* in, VP_MOTION* out,
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java1087 ByteArrayOutputStream out = new ByteArrayOutputStream();
1088 yuvimage.compressToJpeg(new Rect(0, 0, width, height), 100, out);
1090 out.close();
1095 return new MosaicJpeg(out.toByteArray(), width, height);
/packages/apps/Music/tests/src/com/android/music/functional/
H A DTestPlaylist.java135 System.out.println("resolver = null");
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DVideoEditorProject.java1278 final FileOutputStream out = new FileOutputStream(new File(mVideoEditor.getPath(),
1280 out.write(writer.toString().getBytes("UTF-8"));
1281 out.flush();
1282 out.close();
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictIOTests.java187 final FileOutputStream out = new FileOutputStream(file);
190 BinaryDictInputOutput.writeDictionaryBinary(out, dict, formatOptions);
193 out.flush();
194 out.close();
/packages/apps/Music/src/com/android/music/
H A DMusicUtils.java404 * Fills out the given submenu with items for "new playlist" and
420 System.out.println("resolver = null");
808 // figure out if we need to restart with a new playlist,
1328 void dump(PrintWriter out) { argument
1330 out.print(sTime.toString() + " : ");
1332 ((Exception)item).printStackTrace(out);
1334 out.println(item);
1352 static void debugDump(PrintWriter out) { argument
1360 entry.dump(out);
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParser.jj72 System.out.print(msg);
/packages/apps/Camera/src/com/android/camera/
H A DPanoramaModule.java1089 ByteArrayOutputStream out = new ByteArrayOutputStream();
1090 yuvimage.compressToJpeg(new Rect(0, 0, width, height), 100, out);
1092 out.close();
1097 return new MosaicJpeg(out.toByteArray(), width, height);
H A DUtil.java335 TypedValue out = new TypedValue();
336 activity.getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true);
342 .setIcon(out.resourceId)
684 // Since the button is still clickable before fade-out animation
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java218 if (V) Log.v(TAG, "onConnect(): uuid is ok, will send out " +
238 if (V) Log.v(TAG, "onDisconnect(): msg MSG_SESSION_DISCONNECTED sent out.");
305 if (D) Log.d(TAG, "onClose(): msg MSG_SERVERSESSION_CLOSE sent out.");
441 // out on. Can be "Name | Number | Sound", default value is "Name".
937 public static boolean closeStream(final OutputStream out, final Operation op) { argument
940 if (out != null) {
941 out.close();
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieRenderer.java680 private static void convertCart(int angle, int radius, Point out) { argument
682 out.x = (int) (radius * Math.cos(a) + 0.5);
683 out.y = (int) (radius * Math.sin(a) + 0.5);
/packages/apps/Email/tests/src/com/android/email/provider/
H A DAttachmentProviderTests.java682 FileOutputStream out = new FileOutputStream(outFile);
683 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
684 out.close();
/packages/apps/Email/tests/src/com/android/emailcommon/utility/
H A DUtilityUnitTests.java220 OutputStream out = new FileOutputStream(file);
221 out.write(1);
222 out.close();
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DShortcutRepositoryTest.java964 ArrayList<A> out = new ArrayList<A>(sorted.size());
966 out.add(e.getKey());
968 return out;
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DCropImage.java569 OutputStream out = getContentResolver().openOutputStream(uri);
572 convertExtensionToCompressFormat(getFileExtension()), out);
574 Utils.closeSilently(out);
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java1700 ArrayList<Object> out = new ArrayList<Object>();
1706 out.add(new Integer(arg));
1708 out.add(arg);
1713 return out.toArray();
/packages/apps/Email/src/com/android/email/activity/
H A DMessageViewFragmentBase.java785 OutputStream out = new FileOutputStream(file);
786 IOUtils.copy(in, out);
787 out.flush();
788 out.close();
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java539 DataOutputStream out = null;
541 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
542 out.writeUTF(configuration.locale);
543 out.writeInt(configuration.mcc);
544 out.writeInt(configuration.mnc);
545 out.flush();
552 if (out != null) {
554 out.close();
1263 // The following code used to be in onResume, but it turns out onResume is called when
2063 // Only launch using the new animation if the shortcut has not opted out (thi
[all...]
H A DCellLayout.java223 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
232 // where the item will land. The outlines gradually fade out, leaving a trail
290 // We use this method from Workspace to figure out how many rows/columns Launcher should
291 // have. We ignore the left/right padding on CellLayout because it turns out in our design
301 // We use this method from Workspace to figure out how many rows/columns Launcher should
302 // have. We ignore the left/right padding on CellLayout because it turns out in our design
407 void scaleRectAboutCenter(Rect in, Rect out, float scale) { argument
410 out.set(in);
411 out.offset(-cx, -cy);
412 scaleRect(out, scal
[all...]

Completed in 557 milliseconds

12345678