Home
last modified time | relevance | path

Searched refs:ifdType (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/media/java/android/media/
DExifInterface.java1273 for (int ifdType = 0; ifdType < EXIF_TAGS.length; ++ifdType) {
1274 sExifTagMapsForReading[ifdType] = new HashMap();
1275 sExifTagMapsForWriting[ifdType] = new HashMap();
1276 for (ExifTag tag : EXIF_TAGS[ifdType]) {
1277 sExifTagMapsForReading[ifdType].put(tag.number, tag); in put()
1278 sExifTagMapsForWriting[ifdType].put(tag.name, tag); in put()
2738 @IfdType int ifdType) throws IOException { in readImageFileDirectory() argument
2763 ExifTag tag = (ExifTag) sExifTagMapsForReading[ifdType].get(tagNumber); in readImageFileDirectory()
2767 + "numberOfComponents: %d", ifdType, tagNumber, in readImageFileDirectory()
2802 } else if (ifdType == IFD_TYPE_ORF_MAKER_NOTE in readImageFileDirectory()
[all …]
/frameworks/support/exifinterface/src/android/support/media/
DExifInterface.java1251 for (int ifdType = 0; ifdType < EXIF_TAGS.length; ++ifdType) {
1252 sExifTagMapsForReading[ifdType] = new HashMap<>();
1253 sExifTagMapsForWriting[ifdType] = new HashMap<>();
1254 for (ExifTag tag : EXIF_TAGS[ifdType]) {
1255 sExifTagMapsForReading[ifdType].put(tag.number, tag); in put()
1256 sExifTagMapsForWriting[ifdType].put(tag.name, tag); in put()
2680 @IfdType int ifdType) throws IOException { in readImageFileDirectory() argument
2705 ExifTag tag = (ExifTag) sExifTagMapsForReading[ifdType].get(tagNumber); in readImageFileDirectory()
2709 + "numberOfComponents: %d", ifdType, tagNumber, in readImageFileDirectory()
2744 } else if (ifdType == IFD_TYPE_ORF_MAKER_NOTE in readImageFileDirectory()
[all …]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
DExifParser.java181 private boolean isIfdRequested(int ifdType) { in isIfdRequested() argument
182 switch (ifdType) { in isIfdRequested()
518 private void registerIfd(int ifdType, long offset) { in registerIfd() argument
521 mCorrespondingEvent.put((int) offset, new IfdEvent(ifdType, isIfdRequested(ifdType))); in registerIfd()