/aosp14/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
H A D | ExifInterface.java | 1190 public ExifTag getTag(int tagId) { in getTag() argument 1192 return getTag(tagId, ifdId); in getTag() 1201 ExifTag t = getTag(tagId, ifdId); in getTagValue() 1215 return getTagValue(tagId, ifdId); in getTagValue() 1453 return getTrueIfd(tagId); in getDefinedTagDefaultIfd() 1523 int ifdId = getTrueIfd(tagId); in buildTag() 1535 int ifdId = getTrueIfd(tagId); in buildUninitializedTag() 1614 public void deleteTag(int tagId) { in deleteTag() argument 1616 deleteTag(tagId, ifdId); in deleteTag() 1739 getTagInfo().delete(tagId); in removeTagDefinition() [all …]
|
H A D | IfdData.java | 78 protected ExifTag getTag(short tagId) { in getTag() argument 79 return mExifTags.get(tagId); in getTag() 90 protected boolean checkCollision(short tagId) { in checkCollision() argument 91 return mExifTags.get(tagId) != null; in checkCollision() 97 protected void removeTag(short tagId) { in removeTag() argument 98 mExifTags.remove(tagId); in removeTag()
|
H A D | ExifParser.java | 534 short tagId = mTiffStream.readShort(); in readTag() local 543 Log.w(TAG, String.format("Tag %04x: Invalid data type %d", tagId, dataFormat)); in readTag() 548 ExifTag tag = new ExifTag(tagId, dataFormat, (int) numOfComp, mIfdType, in readTag() 637 private boolean checkAllowed(int ifd, int tagId) { in checkAllowed() argument 638 int info = mInterface.getTagInfo().get(tagId); in checkAllowed()
|
H A D | ExifData.java | 204 protected void removeTag(short tagId, int ifdId) { in removeTag() argument 209 ifdData.removeTag(tagId); in removeTag()
|
H A D | ExifTag.java | 127 ExifTag(short tagId, short type, int componentCount, int ifd, in ExifTag() argument 129 mTagId = tagId; in ExifTag()
|
/aosp14/frameworks/base/services/core/java/com/android/server/stats/pull/ |
H A D | StatsPullAtomService.java | 1129 tagId, in registerWifiBytesTransfer() 1561 tagId, 1574 tagId, 1587 tagId, 1600 tagId, 1613 tagId, 1626 tagId, 1639 tagId, 1723 tagId, 1779 tagId, [all …]
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_hardware_camera2_DngCreator.cpp | 57 #define BAIL_IF_INVALID_RET_BOOL(expr, jnienv, tagId, writer) \ argument 60 "Invalid metadata for tag %s (%x)", (writer)->getTagName(tagId), (tagId)); \ 68 "Invalid metadata for tag %s (%x)", (writer)->getTagName(tagId), (tagId)); \ 73 #define BAIL_IF_INVALID_R(expr, jnienv, tagId, writer) \ argument 76 "Invalid metadata for tag %s (%x)", (writer)->getTagName(tagId), (tagId)); \ 80 #define BAIL_IF_EMPTY_RET_NULL_SP(entry, jnienv, tagId, writer) \ argument 83 "Missing metadata fields for tag %s (%x)", (writer)->getTagName(tagId), (tagId)); \ 91 (writer)->getTagName(tagId), (tagId)); \ 99 (writer)->getTagName(tagId), (tagId)); \ 103 #define BAIL_IF_EXPR_RET_NULL_SP(expr, jnienv, tagId, writer) \ argument [all …]
|
/aosp14/frameworks/base/core/java/com/google/android/util/ |
H A D | AbstractMessageParser.java | 1141 public static String getUserTagsURL(String user, String tagId) { in getUserTagsURL() argument 1142 return "http://flickr.com/photos/" + user + "/tags/" + tagId; in getUserTagsURL()
|