Lines Matching refs:image
68 // ImageListParam specifies all the parameters we need to create an image
76 // This is only used if we are creating a single image list.
79 // This is only used if we are creating an empty image list.
165 * @return true if the mimetype is an image mimetype.
168 return mimeType.startsWith("image/");
181 * @return true if the image is an image.
183 public static boolean isImage(IImage image) {
184 return isImageMimeType(image.getMimeType());
188 * @return true if the image is a video.
190 public static boolean isVideo(IImage image) {
192 //return isVideoMimeType(image.getMimeType());
193 return (image instanceof VideoObject);
206 // We should store image data earlier than insert it to ContentProvider, otherwise
240 values.put(Images.Media.MIME_TYPE, "image/jpeg");
282 // This is the factory function to create an image list.
346 // This is a convenience function to create an image list from a Uri.
401 public boolean removeImage(IImage image) {
409 public int getImageIndex(IImage image) {