HomeSort by relevance Sort by last modified time
    Searched refs:ExifTag (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
IfdData.java 26 * @see ExifTag
31 private final Map<Short, ExifTag> mExifTags = new HashMap<Short, ExifTag>();
55 * Get a array the contains all {@link ExifTag} in this IFD.
57 protected ExifTag[] getAllTags() {
58 return mExifTags.values().toArray(new ExifTag[mExifTags.size()]);
75 * Gets the {@link ExifTag} with given tag id. Return null if there is no
78 protected ExifTag getTag(short tagId) {
83 * Adds or replaces a {@link ExifTag}.
85 protected ExifTag setTag(ExifTag tag)
    [all...]
ExifInterface.java 56 * Each ExifTag has a tag ID (TID) and is stored in a specific image file
62 * @see ExifTag
777 public void setExif(Collection<ExifTag> tags) {
    [all...]
ExifData.java 128 if (ExifTag.isValidIfd(ifdId)) {
159 protected ExifTag getTag(short tag, int ifd) {
165 * Adds the given ExifTag to its default IFD and returns an existing ExifTag
168 protected ExifTag addTag(ExifTag tag) {
177 * Adds the given ExifTag to the given IFD and returns an existing ExifTag
180 protected ExifTag addTag(ExifTag tag, int ifdId)
    [all...]
ExifModifier.java 39 final ExifTag mTag;
41 TagOffset(ExifTag tag, int offset) {
110 ExifTag oldTag = parser.getTag();
111 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
147 private void writeTagValue(ExifTag tag, int offset) {
154 case ExifTag.TYPE_ASCII:
164 case ExifTag.TYPE_LONG:
165 case ExifTag.TYPE_UNSIGNED_LONG:
170 case ExifTag.TYPE_RATIONAL:
171 case ExifTag.TYPE_UNSIGNED_RATIONAL
    [all...]
ExifParser.java 46 * ExifTag tag = parser.getTag();
55 * if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) {
64 * void processTag(ExifTag tag) {
84 * {@link #registerForTagValue(ExifTag)} previously. Call {@link #getTag()}
151 private ExifTag mTag;
154 private ExifTag mStripSizeTag;
155 private ExifTag mJpegSizeTag;
344 if (mTag.getDataType() != ExifTag.TYPE_UNDEFINED) {
414 * {@link ExifTag#hasValue()} to check if the tag contains value. If there
415 * is no value,call {@link #registerForTagValue(ExifTag)} to have the parse
    [all...]
ExifOutputStream.java 216 ArrayList<ExifTag> nullTags = stripNullValueTags(mExifData);
238 for (ExifTag t : nullTags) {
243 private ArrayList<ExifTag> stripNullValueTags(ExifData data) {
244 ArrayList<ExifTag> nullTags = new ArrayList<ExifTag>();
245 for(ExifTag t : data.getAllTags()) {
283 ExifTag[] tags = ifd.getAllTags();
285 for (ExifTag tag : tags) {
302 for (ExifTag tag : tags) {
311 ExifTag[] tags = ifd.getAllTags()
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
IfdData.java 26 * @see ExifTag
31 private final Map<Short, ExifTag> mExifTags = new HashMap<Short, ExifTag>();
55 * Get a array the contains all {@link ExifTag} in this IFD.
57 protected ExifTag[] getAllTags() {
58 return mExifTags.values().toArray(new ExifTag[mExifTags.size()]);
75 * Gets the {@link ExifTag} with given tag id. Return null if there is no
78 protected ExifTag getTag(short tagId) {
83 * Adds or replaces a {@link ExifTag}.
85 protected ExifTag setTag(ExifTag tag)
    [all...]
ExifInterface.java 57 * Each ExifTag has a tag ID (TID) and is stored in a specific image file
63 * @see ExifTag
777 public void setExif(Collection<ExifTag> tags) {
    [all...]
ExifData.java 128 if (ExifTag.isValidIfd(ifdId)) {
159 protected ExifTag getTag(short tag, int ifd) {
165 * Adds the given ExifTag to its default IFD and returns an existing ExifTag
168 protected ExifTag addTag(ExifTag tag) {
177 * Adds the given ExifTag to the given IFD and returns an existing ExifTag
180 protected ExifTag addTag(ExifTag tag, int ifdId)
    [all...]
ExifModifier.java 39 final ExifTag mTag;
41 TagOffset(ExifTag tag, int offset) {
110 ExifTag oldTag = parser.getTag();
111 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
147 private void writeTagValue(ExifTag tag, int offset) {
154 case ExifTag.TYPE_ASCII:
164 case ExifTag.TYPE_LONG:
165 case ExifTag.TYPE_UNSIGNED_LONG:
170 case ExifTag.TYPE_RATIONAL:
171 case ExifTag.TYPE_UNSIGNED_RATIONAL
    [all...]
ExifParser.java 46 * ExifTag tag = parser.getTag();
55 * if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) {
64 * void processTag(ExifTag tag) {
84 * {@link #registerForTagValue(ExifTag)} previously. Call {@link #getTag()}
151 private ExifTag mTag;
154 private ExifTag mStripSizeTag;
155 private ExifTag mJpegSizeTag;
344 if (mTag.getDataType() != ExifTag.TYPE_UNDEFINED) {
414 * {@link ExifTag#hasValue()} to check if the tag contains value. If there
415 * is no value,call {@link #registerForTagValue(ExifTag)} to have the parse
    [all...]
ExifOutputStream.java 216 ArrayList<ExifTag> nullTags = stripNullValueTags(mExifData);
238 for (ExifTag t : nullTags) {
243 private ArrayList<ExifTag> stripNullValueTags(ExifData data) {
244 ArrayList<ExifTag> nullTags = new ArrayList<ExifTag>();
245 for(ExifTag t : data.getAllTags()) {
283 ExifTag[] tags = ifd.getAllTags();
285 for (ExifTag tag : tags) {
302 for (ExifTag tag : tags) {
311 ExifTag[] tags = ifd.getAllTags()
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
IfdData.java 26 * @see ExifTag
31 private final Map<Short, ExifTag> mExifTags = new HashMap<Short, ExifTag>();
55 * Get a array the contains all {@link ExifTag} in this IFD.
57 protected ExifTag[] getAllTags() {
58 return mExifTags.values().toArray(new ExifTag[mExifTags.size()]);
75 * Gets the {@link ExifTag} with given tag id. Return null if there is no
78 protected ExifTag getTag(short tagId) {
83 * Adds or replaces a {@link ExifTag}.
85 protected ExifTag setTag(ExifTag tag)
    [all...]
ExifInterface.java 56 * Each ExifTag has a tag ID (TID) and is stored in a specific image file
62 * @see ExifTag
777 public void setExif(Collection<ExifTag> tags) {
    [all...]
ExifData.java 128 if (ExifTag.isValidIfd(ifdId)) {
159 protected ExifTag getTag(short tag, int ifd) {
165 * Adds the given ExifTag to its default IFD and returns an existing ExifTag
168 protected ExifTag addTag(ExifTag tag) {
177 * Adds the given ExifTag to the given IFD and returns an existing ExifTag
180 protected ExifTag addTag(ExifTag tag, int ifdId)
    [all...]
ExifModifier.java 40 final ExifTag mTag;
42 TagOffset(ExifTag tag, int offset) {
111 ExifTag oldTag = parser.getTag();
112 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
148 private void writeTagValue(ExifTag tag, int offset) {
155 case ExifTag.TYPE_ASCII:
165 case ExifTag.TYPE_LONG:
166 case ExifTag.TYPE_UNSIGNED_LONG:
171 case ExifTag.TYPE_RATIONAL:
172 case ExifTag.TYPE_UNSIGNED_RATIONAL
    [all...]
ExifParser.java 46 * ExifTag tag = parser.getTag();
55 * if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) {
64 * void processTag(ExifTag tag) {
84 * {@link #registerForTagValue(ExifTag)} previously. Call {@link #getTag()}
151 private ExifTag mTag;
154 private ExifTag mStripSizeTag;
155 private ExifTag mJpegSizeTag;
344 if (mTag.getDataType() != ExifTag.TYPE_UNDEFINED) {
414 * {@link ExifTag#hasValue()} to check if the tag contains value. If there
415 * is no value,call {@link #registerForTagValue(ExifTag)} to have the parse
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
IfdData.java 26 * @see ExifTag
31 private final Map<Short, ExifTag> mExifTags = new HashMap<Short, ExifTag>();
55 * Get a array the contains all {@link ExifTag} in this IFD.
57 protected ExifTag[] getAllTags() {
58 return mExifTags.values().toArray(new ExifTag[mExifTags.size()]);
75 * Gets the {@link ExifTag} with given tag id. Return null if there is no
78 protected ExifTag getTag(short tagId) {
83 * Adds or replaces a {@link ExifTag}.
85 protected ExifTag setTag(ExifTag tag)
    [all...]
ExifInterface.java 56 * Each ExifTag has a tag ID (TID) and is stored in a specific image file
62 * @see ExifTag
777 public void setExif(Collection<ExifTag> tags) {
    [all...]
ExifData.java 129 if (ExifTag.isValidIfd(ifdId)) {
160 protected ExifTag getTag(short tag, int ifd) {
166 * Adds the given ExifTag to its default IFD and returns an existing ExifTag
169 protected ExifTag addTag(ExifTag tag) {
178 * Adds the given ExifTag to the given IFD and returns an existing ExifTag
181 protected ExifTag addTag(ExifTag tag, int ifdId)
    [all...]
ExifModifier.java 40 final ExifTag mTag;
42 TagOffset(ExifTag tag, int offset) {
111 ExifTag oldTag = parser.getTag();
112 ExifTag newTag = currIfd.getTag(oldTag.getTagId());
148 private void writeTagValue(ExifTag tag, int offset) {
155 case ExifTag.TYPE_ASCII:
165 case ExifTag.TYPE_LONG:
166 case ExifTag.TYPE_UNSIGNED_LONG:
171 case ExifTag.TYPE_RATIONAL:
172 case ExifTag.TYPE_UNSIGNED_RATIONAL
    [all...]
ExifParser.java 47 * ExifTag tag = parser.getTag();
56 * if (tag.getDataType() != ExifTag.TYPE_UNDEFINED) {
65 * void processTag(ExifTag tag) {
85 * {@link #registerForTagValue(ExifTag)} previously. Call {@link #getTag()}
152 private ExifTag mTag;
155 private ExifTag mStripSizeTag;
156 private ExifTag mJpegSizeTag;
345 if (mTag.getDataType() != ExifTag.TYPE_UNDEFINED) {
415 * {@link ExifTag#hasValue()} to check if the tag contains value. If there
416 * is no value,call {@link #registerForTagValue(ExifTag)} to have the parse
    [all...]
  /frameworks/base/media/java/android/media/
ExifInterface.java     [all...]
  /external/libexif/libexif/
exif-entry.h 45 ExifTag tag;
125 void exif_entry_initialize (ExifEntry *e, ExifTag tag);
  /external/libexif/test/
test-sorted.c 33 ExifTag last = 0, current;

Completed in 645 milliseconds

1 2 3