Searched refs:ifdType (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/media/java/android/media/ |
D | ExifInterface.java | 1273 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/ |
D | ExifInterface.java | 1251 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/ |
D | ExifParser.java | 181 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()
|