Home
last modified time | relevance | path

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

/frameworks/base/media/java/android/media/
DExifInterface.java1278 for (int ifdType = 0; ifdType < EXIF_TAGS.length; ++ifdType) {
1279 sExifTagMapsForReading[ifdType] = new HashMap();
1280 sExifTagMapsForWriting[ifdType] = new HashMap();
1281 for (ExifTag tag : EXIF_TAGS[ifdType]) {
1282 sExifTagMapsForReading[ifdType].put(tag.number, tag); in put()
1283 sExifTagMapsForWriting[ifdType].put(tag.name, tag); in put()
2913 @IfdType int ifdType) throws IOException { in readImageFileDirectory() argument
2938 ExifTag tag = (ExifTag) sExifTagMapsForReading[ifdType].get(tagNumber); in readImageFileDirectory()
2942 + "numberOfComponents: %d", ifdType, tagNumber, in readImageFileDirectory()
2977 } else if (ifdType == IFD_TYPE_ORF_MAKER_NOTE in readImageFileDirectory()
[all …]
/frameworks/support/exifinterface/src/android/support/media/
DExifInterface.java3656 for (int ifdType = 0; ifdType < EXIF_TAGS.length; ++ifdType) {
3657 sExifTagMapsForReading[ifdType] = new HashMap<>();
3658 sExifTagMapsForWriting[ifdType] = new HashMap<>();
3659 for (ExifTag tag : EXIF_TAGS[ifdType]) {
3660 sExifTagMapsForReading[ifdType].put(tag.number, tag); in put()
3661 sExifTagMapsForWriting[ifdType].put(tag.name, tag); in put()
5307 @IfdType int ifdType) throws IOException {
5331 ExifTag tag = (ExifTag) sExifTagMapsForReading[ifdType].get(tagNumber);
5335 + "numberOfComponents: %d", ifdType, tagNumber,
5376 } else if (ifdType == IFD_TYPE_ORF_MAKER_NOTE
[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()
/frameworks/support/exifinterface/tests/src/android/support/media/
DExifInterfaceTest.java839 private void generateRandomExifTag(ByteBuffer buffer, int ifdType, Random random) { in generateRandomExifTag() argument
840 ExifInterface.ExifTag[] tagGroup = ExifInterface.EXIF_TAGS[ifdType]; in generateRandomExifTag()