Searched defs:bmap (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DBitmapCaller.java22 public void available(Bitmap bmap); argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropMath.java230 * @param bmap bitmap whose size to check
233 public static int getBitmapSize(Bitmap bmap) { argument
234 return bmap.getRowBytes() * bmap.getHeight();
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java811 * @param bmap a bitmap to compress and write exif into.
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
821 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
874 * @param bmap a bitmap to compress and write exif into.
880 public void writeExif(Bitmap bmap, String exifOutFileName) throws FileNotFoundException, argument
882 if (bmap == null || exifOutFileName == null) {
888 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java811 * @param bmap a bitmap to compress and write exif into.
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
821 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
874 * @param bmap a bitmap to compress and write exif into.
880 public void writeExif(Bitmap bmap, String exifOutFileName) throws FileNotFoundException, argument
882 if (bmap == null || exifOutFileName == null) {
888 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
H A DExifInterface.java811 * @param bmap a bitmap to compress and write exif into.
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
821 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
874 * @param bmap a bitmap to compress and write exif into.
880 public void writeExif(Bitmap bmap, String exifOutFileName) throws FileNotFoundException, argument
882 if (bmap == null || exifOutFileName == null) {
888 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
/packages/apps/Mms/src/com/android/mms/exif/
H A DExifInterface.java811 * @param bmap a bitmap to compress and write exif into.
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
821 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
874 * @param bmap a bitmap to compress and write exif into.
880 public void writeExif(Bitmap bmap, String exifOutFileName) throws FileNotFoundException, argument
882 if (bmap == null || exifOutFileName == null) {
888 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);

Completed in 694 milliseconds