Home
last modified time | relevance | path

Searched refs:buildTag (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/util/
DExifUtil.java121 mExif.setTag(mExif.buildTag(ExifInterface.TAG_PIXEL_X_DIMENSION, image.width));
122 mExif.setTag(mExif.buildTag(ExifInterface.TAG_PIXEL_Y_DIMENSION, image.height));
123 mExif.setTag(mExif.buildTag(ExifInterface.TAG_IMAGE_WIDTH, image.width));
124 mExif.setTag(mExif.buildTag(ExifInterface.TAG_IMAGE_LENGTH, image.height));
125 mExif.setTag(mExif.buildTag(ExifInterface.TAG_ORIENTATION,
184 mExif.setTag(mExif.buildTag(tagId, val));
/packages/apps/Messaging/src/com/android/messaging/util/exif/
DExifInterface.java1497 public ExifTag buildTag(int tagId, int ifdId, Object val) { in buildTag() method in ExifInterface
1522 public ExifTag buildTag(int tagId, Object val) { in buildTag() method in ExifInterface
1524 return buildTag(tagId, ifdId, val); in buildTag()
2009 ExifTag t = buildTag(tagId, mDateTimeStampFormat.format(timestamp)); in addDateTimeStampTag()
2028 ExifTag latTag = buildTag(TAG_GPS_LATITUDE, toExifLatLong(latitude)); in addGpsTags()
2029 ExifTag longTag = buildTag(TAG_GPS_LONGITUDE, toExifLatLong(longitude)); in addGpsTags()
2030 ExifTag latRefTag = buildTag(TAG_GPS_LATITUDE_REF, in addGpsTags()
2033 ExifTag longRefTag = buildTag(TAG_GPS_LONGITUDE_REF, in addGpsTags()
2053 ExifTag t = buildTag(TAG_GPS_DATE_STAMP, mGPSDateStampFormat.format(timestamp)); in addGpsDateTimeStampTag()
2059 t = buildTag(TAG_GPS_TIME_STAMP, new Rational[] { in addGpsDateTimeStampTag()
/packages/apps/Camera2/src/com/android/camera/exif/
DExifInterface.java1476 public ExifTag buildTag(int tagId, int ifdId, Object val) { in buildTag() method in ExifInterface
1501 public ExifTag buildTag(int tagId, Object val) { in buildTag() method in ExifInterface
1503 return buildTag(tagId, ifdId, val); in buildTag()
1947 ExifTag t = buildTag(tagId, mDateTimeStampFormat.format(timestamp)); in addDateTimeStampTag()
1966 ExifTag latTag = buildTag(TAG_GPS_LATITUDE, toExifLatLong(latitude)); in addGpsTags()
1967 ExifTag longTag = buildTag(TAG_GPS_LONGITUDE, toExifLatLong(longitude)); in addGpsTags()
1968 ExifTag latRefTag = buildTag(TAG_GPS_LATITUDE_REF, in addGpsTags()
1971 ExifTag longRefTag = buildTag(TAG_GPS_LONGITUDE_REF, in addGpsTags()
1991 ExifTag t = buildTag(TAG_GPS_DATE_STAMP, mGPSDateStampFormat.format(timestamp)); in addGpsDateTimeStampTag()
1997 t = buildTag(TAG_GPS_TIME_STAMP, new Rational[] { in addGpsDateTimeStampTag()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DExifInterface.java1497 public ExifTag buildTag(int tagId, int ifdId, Object val) { in buildTag() method in ExifInterface
1522 public ExifTag buildTag(int tagId, Object val) { in buildTag() method in ExifInterface
1524 return buildTag(tagId, ifdId, val); in buildTag()
1968 ExifTag t = buildTag(tagId, mDateTimeStampFormat.format(timestamp)); in addDateTimeStampTag()
1987 ExifTag latTag = buildTag(TAG_GPS_LATITUDE, toExifLatLong(latitude)); in addGpsTags()
1988 ExifTag longTag = buildTag(TAG_GPS_LONGITUDE, toExifLatLong(longitude)); in addGpsTags()
1989 ExifTag latRefTag = buildTag(TAG_GPS_LATITUDE_REF, in addGpsTags()
1992 ExifTag longRefTag = buildTag(TAG_GPS_LONGITUDE_REF, in addGpsTags()
2012 ExifTag t = buildTag(TAG_GPS_DATE_STAMP, mGPSDateStampFormat.format(timestamp)); in addGpsDateTimeStampTag()
2018 t = buildTag(TAG_GPS_TIME_STAMP, new Rational[] { in addGpsDateTimeStampTag()
/packages/apps/Camera2/src/com/android/camera/one/v2/
DOneCameraZslImpl.java622 exif.setTag(exif.buildTag(ExifInterface.TAG_PIXEL_X_DIMENSION, size.getWidth())); in savePicture()
623 exif.setTag(exif.buildTag(ExifInterface.TAG_PIXEL_Y_DIMENSION, size.getHeight())); in savePicture()
626 exif.buildTag(ExifInterface.TAG_ORIENTATION, ExifInterface.Orientation.TOP_LEFT)); in savePicture()
630 ExifTag directionRefTag = exif.buildTag(ExifInterface.TAG_GPS_IMG_DIRECTION_REF, in savePicture()
633 exif.buildTag(ExifInterface.TAG_GPS_IMG_DIRECTION, new Rational(heading, 1)); in savePicture()
DOneCameraImpl.java488 ExifTag directionRefTag = exif.buildTag( in saveJpegPicture()
491 ExifTag directionTag = exif.buildTag( in saveJpegPicture()
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLocalImage.java285 ExifTag tag = exifInterface.buildTag(ExifInterface.TAG_ORIENTATION, in rotate()
/packages/apps/Camera2/src/com/android/camera/
DPhotoModule.java994 ExifTag directionRefTag = exif.buildTag( in saveFinalPhoto()
997 ExifTag directionTag = exif.buildTag( in saveFinalPhoto()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
DSaveImage.java322 exif.setTag(exif.buildTag(ExifInterface.TAG_ORIENTATION, in updateExifData()