Searched refs:out (Results 226 - 250 of 254) sorted by relevance

1234567891011

/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java215 if (V) Log.v(TAG, "onConnect(): uuid is ok, will send out " +
235 if (V) Log.v(TAG, "onDisconnect(): msg MSG_SESSION_DISCONNECTED sent out.");
311 if (D) Log.d(TAG, "onClose(): msg MSG_SERVERSESSION_CLOSE sent out.");
466 // out on. Can be "Name | Number | Sound", default value is "Name".
982 public static boolean closeStream(final OutputStream out, final Operation op) { argument
985 if (out != null) {
986 out.close();
/packages/apps/Camera/src/com/android/camera/
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/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/Dialer/src/com/android/dialer/widget/
H A DOverlappingPaneLayout.java512 // This was skipped the first time; figure out a real width spec.
1269 public void writeToParcel(Parcel out, int flags) { argument
1270 super.writeToParcel(out, flags);
1271 out.writeInt(isOpen ? 1 : 0);
/packages/apps/Email/tests/src/com/android/email/provider/
H A DAttachmentProviderTests.java663 FileOutputStream out = new FileOutputStream(outFile);
664 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
665 out.close();
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DAttachment.java268 final OutputStream out = resolver.openOutputStream(uri, "rwt");
269 size = IOUtils.copy(in, out);
272 out.close();
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DScrollAdapterView.java53 * fade in, one fade out.
889 // 2. prune views that scroll out of visible area
2665 assertFailure("Scroll out of range?");
2714 public void writeToParcel(Parcel out, int flags) { argument
2715 super.writeToParcel(out, flags);
2716 out.writeInt(theState.itemsOnOffAxis);
2717 out.writeInt(theState.index);
2718 out.writeBundle(theState.expandedChildStates);
2719 out.writeBundle(theState.expandableChildStates);
2886 * if allow DPAD key in secondary axis to navigate out o
[all...]
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java986 OutputStream out = null;
988 out = new FileOutputStream(exifOutFileName);
990 closeSilently(out);
993 return getExifWriterStream(out);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java986 OutputStream out = null;
988 out = (OutputStream) new FileOutputStream(exifOutFileName);
990 closeSilently(out);
993 return getExifWriterStream(out);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifInterface.java986 OutputStream out = null;
988 out = (OutputStream) new FileOutputStream(exifOutFileName);
990 closeSilently(out);
993 return getExifWriterStream(out);
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifInterface.java986 OutputStream out = null;
988 out = new FileOutputStream(exifOutFileName);
990 closeSilently(out);
993 return getExifWriterStream(out);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java546 DataOutputStream out = null;
548 out = new DataOutputStream(context.openFileOutput(PREFERENCES, MODE_PRIVATE));
549 out.writeUTF(configuration.locale);
550 out.writeInt(configuration.mcc);
551 out.writeInt(configuration.mnc);
552 out.flush();
559 if (out != null) {
561 out.close();
1333 // The following code used to be in onResume, but it turns out onResume is called when
2152 // Only launch using the new animation if the shortcut has not opted out (thi
[all...]
H A DWidgetPreviewLoader.java435 Bitmap out = BitmapFactory.decodeByteArray(blob, 0, blob.length, opts);
436 return out;
586 // Figure out the badge location.
H A DCellLayout.java224 mEaseOutInterpolator = new DecelerateInterpolator(2.5f); // Quint ease out
233 // where the item will land. The outlines gradually fade out, leaving a trail
293 // We use this method from Workspace to figure out how many rows/columns Launcher should
294 // have. We ignore the left/right padding on CellLayout because it turns out in our design
304 // We use this method from Workspace to figure out how many rows/columns Launcher should
305 // have. We ignore the left/right padding on CellLayout because it turns out in our design
417 void scaleRectAboutCenter(Rect in, Rect out, float scale) { argument
420 out.set(in);
421 out.offset(-cx, -cy);
422 scaleRect(out, scal
[all...]
H A DPagedView.java268 * out pages.
834 // Find out which screens are visible; as an optimization we only call draw on them
1216 // exceed). Used to find out how much extra wallpaper we need for the over scroll effect
1658 public void writeToParcel(Parcel out, int flags) { argument
1659 super.writeToParcel(out, flags);
1660 out.writeInt(currentPage);
1843 // Fade the indicator out
/packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
H A DStaggeredGridView.java88 * Like ListView, SGV populates from an adapter and recycles views that fall out
184 * List of all views to animate out. This is used when we need to animate out stale views.
473 * all views starting at the 0th position of the adapter to figure out the proper offset of the
728 // the other properties because on the next data change, as we lay out, we'll need
863 // this means that the user has scrolled the child out of
872 // out of view, then the view has not been recycled and is
1058 // and the {@link DragEvent} gets nulled out. This is a workaround for
1308 // In LTR layout, iterate across each column that this child is laid out in,
1360 // TODO: Figure out wh
3943 writeToParcel(Parcel out, int flags) argument
[all...]
/packages/apps/Bluetooth/lib/mapapi/com/android/bluetooth/mapapi/
H A DBluetoothMapEmailProvider.java74 * @param out the FileOurputStream to write to.
78 boolean includeAttachment, boolean download, FileOutputStream out)
82 * @return the CONTENT_URI exposed. This will be used to send out notifications.
534 * Filter out the non usable folders and ensure to name the mandatory folders
77 WriteMessageToStream(long accountId, long messageId, boolean includeAttachment, boolean download, FileOutputStream out) argument
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
H A DLayout.java705 public void writeToParcel(Parcel out, int flags) { argument
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
H A DAddressListParserTokenManager.java28 public java.io.PrintStream debugStream = System.out;
H A DAddressListParser.java34 System.out.print(msg);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
H A DContentTypeParserTokenManager.java29 public java.io.PrintStream debugStream = System.out;
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
H A DDateTimeParserTokenManager.java30 public java.io.PrintStream debugStream = System.out;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncher.java630 DataOutputStream out = null;
632 out = new DataOutputStream(context.openFileOutput(
634 out.writeUTF(configuration.locale);
635 out.writeInt(configuration.mcc);
636 out.writeInt(configuration.mnc);
637 out.flush();
644 if (out != null) {
646 out.close();
1786 // The following code used to be in onResume, but it turns out onResume is called when
2751 // it is actually opened. There have been a few instances where this gets out o
[all...]
H A DPagedView.java220 // dimensions such that when we are zoomed out, the view is not clipped
464 * out pages.
819 // zoom out (and scale down), the view is still contained in the parent
1198 // Find out which screens are visible; as an optimization we only call draw on them
1662 // exceed). Used to find out how much extra wallpaper we need for the over scroll effect
2365 public void writeToParcel(Parcel out, int flags) { argument
2366 super.writeToParcel(out, flags);
2367 out.writeInt(currentPage);
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java2892 ArrayList<Object> out = new ArrayList<Object>();
2898 out.add(new Integer(arg));
2900 out.add(arg);
2905 return out.toArray();

Completed in 1650 milliseconds

1234567891011