Home | History | Annotate | Download | only in exif

Lines Matching refs:ifd

126      * Returns the {@link IfdData} object corresponding to a given IFD if it
137 * Adds IFD data. If IFD data of the same type already exists, it will be
145 * Returns the {@link IfdData} object corresponding to a given IFD or
158 * Returns the tag with a given TID in the given IFD if the tag exists.
161 protected ExifTag getTag(short tag, int ifd) {
162 IfdData ifdData = mIfdDatas[ifd];
167 * Adds the given ExifTag to its default IFD and returns an existing ExifTag
172 int ifd = tag.getIfd();
173 return addTag(tag, ifd);
179 * Adds the given ExifTag to the given IFD and returns an existing ExifTag
204 * Removes the tag with a given TID and IFD.
276 * Returns a list of all {@link ExifTag}s in a given IFD or null if there
279 protected List<ExifTag> getAllTagsForIfd(int ifd) {
280 IfdData d = mIfdDatas[ifd];