Home | History | Annotate | Download | only in exif

Lines Matching refs:ifd

124      * Returns the {@link IfdData} object corresponding to a given IFD if it
135 * Adds IFD data. If IFD data of the same type already exists, it will be
143 * Returns the {@link IfdData} object corresponding to a given IFD or
156 * Returns the tag with a given TID in the given IFD if the tag exists.
159 protected ExifTag getTag(short tag, int ifd) {
160 IfdData ifdData = mIfdDatas[ifd];
165 * Adds the given ExifTag to its default IFD and returns an existing ExifTag
170 int ifd = tag.getIfd();
171 return addTag(tag, ifd);
177 * Adds the given ExifTag to the given IFD and returns an existing ExifTag
202 * Removes the tag with a given TID and IFD.
274 * Returns a list of all {@link ExifTag}s in a given IFD or null if there
277 protected List<ExifTag> getAllTagsForIfd(int ifd) {
278 IfdData d = mIfdDatas[ifd];