HomeSort by relevance Sort by last modified time
    Searched defs:images (Results 1 - 25 of 183) sorted by null

1 2 3 4 5 6 7 8

  /external/ImageMagick/www/source/
core.c 14 *images, local
33 images=ReadImage(image_info,exception);
36 if (images == (Image *) NULL)
42 while ((image=RemoveFirstImageFromList(&images)) != (Image *) NULL)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
PasteAction.java 51 ISharedImages images = PlatformUI.getWorkbench().getSharedImages(); local
52 setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE));
53 setHoverImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE));
55 images.getImageDescriptor(ISharedImages.IMG_TOOL_PASTE_DISABLED));
CopyCutAction.java 82 ISharedImages images = PlatformUI.getWorkbench().getSharedImages(); local
84 setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_CUT));
85 setHoverImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_HOVER));
87 images.getImageDescriptor(ISharedImages.IMG_TOOL_CUT_DISABLED));
89 setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_COPY));
90 setHoverImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_HOVER));
92 images.getImageDescriptor(ISharedImages.IMG_TOOL_COPY_DISABLED));
  /external/ImageMagick/MagickWand/
magick-wand-private.h 58 *images; /* The images in this wand - also the current image */ member in struct:_MagickWand
61 *image_info; /* Global settings used for images in Wand */
67 insert_before, /* wand set to first image, prepend new images */
identify.c 306 *images;
321 images=PingImages(identify_info,filename,exception);
323 images=ReadImages(identify_info,filename,exception);
325 status&=(images != (Image *) NULL) &&
327 if (images == (Image *) NULL)
329 AppendImageStack(images);
304 *images; local
    [all...]
stream.c 39 % making stream desirable when working with large images or when you require
287 *images;
297 images=StreamImage(image_info,stream_info,exception);
298 status&=(images != (Image *) NULL) &&
300 if (images == (Image *) NULL)
302 AppendImageStack(images);
285 *images; local
animate.c 62 % AnimateImageCommand() displays a sequence of images on any workstation
159 "-loop iterations loop images then exit",
189 "-coalesce merge a sequence of images",
190 "-flatten flatten a sequence of images",
428 *images;
441 images=PingImages(image_info,filename,exception);
443 images=ReadImages(image_info,filename,exception);
444 status&=(images != (Image *) NULL) &&
446 if (images == (Image *) NULL)
448 AppendImageStack(images);
426 *images; local
    [all...]
compare.c 62 % CompareImagesCommand() compares two images and returns the difference between
127 "-metric type measure differences between images with this metric",
321 *images;
330 images=ReadImages(image_info,filename,exception);
331 status&=(images != (Image *) NULL) &&
333 if (images == (Image *) NULL)
335 AppendImageStack(images);
319 *images; local
    [all...]
convert.c 77 % ConvertImageCommand() reads one or more images, applies one or more image
210 " distort images according to given method ad args",
338 "-coalesce merge a sequence of images",
339 "-combine combine a sequence of images",
349 "-flatten flatten a sequence of images",
360 "-write filename write images to this file",
365 "-adjoin join images into a single multi-image file",
473 "-swap indexes swap two images in the image sequence",
629 *images;
639 images=PingImages(image_info,filename,exception)
627 *images; local
    [all...]
display.c 63 % DisplayImageCommand() displays a sequence of images on any workstation
188 "-loop iterations loop images then exit",
224 "-coalesce merge a sequence of images",
225 "-flatten flatten a sequence of images",
493 *images;
506 images=ReadImage(image_info,exception);
508 status&=(images != (Image *) NULL) &&
510 if (images == (Image *) NULL)
512 AppendImageStack(images);
491 *images; local
    [all...]
import.c 135 "-adjoin join images into a single multi-image file",
443 *images;
459 images=XImportImage(image_info,&ximage_info,exception);
460 status&=(images != (Image *) NULL) &&
462 if (images == (Image *) NULL)
464 (void) CopyMagickString(images->filename,filename,MagickPathExtent);
465 (void) CopyMagickString(images->magick,"PS",MagickPathExtent);
466 images->scene=scene;
467 AppendImageStack(images);
441 *images; local
    [all...]
montage.c 37 % separate images. The images are tiled on the composite image optionally
63 % MontageImageCommand() reads one or more images, applies one or more image
113 "-flatten flatten a sequence of images",
133 "-adjoin join images into a single multi-image file",
213 "-coalesce merge a sequence of images",
225 "-swap indexes swap two images in the image sequence",
394 *images;
410 images=ReadImages(image_info,filename,exception);
417 Form filename for multi-part images
392 *images; local
    [all...]
  /external/ImageMagick/coders/
vid.c 13 % Return a Visual Image Directory for matching images. %
86 % ReadVIDImage reads one of more images and creates a Visual Image
111 *images,
157 images=NewImageList();
198 AppendImageToList(&images,next_image);
199 status=SetImageProgress(images,LoadImagesTag,i,number_files);
205 if (images == (Image *) NULL)
215 GetFirstImageInList(images),exception);
217 images=DestroyImageList(images);
108 *images, local
    [all...]
jnx.c 141 *images;
227 images=NewImageList();
289 if (images != (Image *) NULL)
290 images=DestroyImageList(images);
298 if (images != (Image *) NULL)
299 images=DestroyImageList(images);
316 AppendImageToList(&images,tile_image);
331 if (images == (Image *) NULL
137 *images; local
    [all...]
mpeg.c 177 *images;
213 images=ReadImage(read_info,exception);
216 return(images);
173 *images; local
  /external/libdrm/tests/exynos/
exynos_fimg2d_perf.c 113 struct g2d_image *images; local
119 images = calloc(batch, sizeof(struct g2d_image));
120 if (images == NULL) {
121 fprintf(stderr, "error: failed to allocate G2D images.\n");
126 images[i].width = buf_width;
127 images[i].height = buf_height;
128 images[i].stride = buf_width * 4;
129 images[i].color_mode = G2D_COLOR_FMT_ARGB8888 | G2D_ORDER_AXRGB;
130 images[i].buf_type = G2D_IMGBUF_GEM;
131 images[i].bo[0] = bo->handle
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_atom_image.c 52 struct pipe_image_view images[MAX_IMAGE_UNIFORMS]; local
64 struct pipe_image_view *img = &images[i];
122 prog->info.num_images, images);
123 /* clear out any stale shader images */
  /external/skia/tools/flags/
SkCommonFlags.h 18 DECLARE_string(images); variable
45 * Populates |output|, an array of strings with paths to images to test.
47 * Returns true if each argument to the images flag is meaningful:
49 * - If |dir| does not have any supported images (based on file type), return false.
  /external/syslinux/gpxe/src/core/
image.c 35 * Executable/loadable images
39 /** List of registered images */
40 struct list_head images = LIST_HEAD_INIT ( images ); variable in typeref:struct:list_head
128 list_add_tail ( &image->list, &images );
156 list_for_each_entry ( image, &images, list ) {
  /external/skia/gm/
imagefromyuvtextures.cpp 141 SkTArray<sk_sp<SkImage>> images; variable
142 images.push_back(fRGBImage);
146 images.push_back(SkImage::MakeFromYUVTexturesCopy(context,
152 for (int i = 0; i < images.count(); ++ i) {
156 canvas->drawImage(images[i].get(), x, y);
readpixels.cpp 305 const sk_sp<SkImage> images[] = { variable
327 for (sk_sp<SkImage> image : images) {
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/zsl/
ZslImageCaptureCommand.java 49 * Captures images by first looking to the zsl ring buffer for acceptable (based
50 * on metadata) images. If no such images are available, a fallback
77 * @return All images currently in the ring-buffer, ordered from oldest to
82 List<ImageProxy> images = new ArrayList<>(); local
84 // Keep grabbing images until there are no more immediately
88 images.add(mZslRingBuffer.getNext(0, TimeUnit.SECONDS));
94 // Close the images to avoid leaking them, since they will not be
96 for (ImageProxy image : images) {
101 return images;
124 List<ImageProxy> images = filterImagesWithinMaxLookBack(getAllAvailableImages()); local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
SPVerifier.java 270 List<LogoTypeImage> images = new ArrayList<>(); local
281 images.add(new LogoTypeImage(castObject(logoTypeImage, Asn1Constructed.class)));
285 return images;
  /external/ImageMagick/MagickCore/
channel.c 86 % For example, to create 3 grayscale images from the red, green, and blue
450 % CombineImages() combines one or more images into a single image. The
457 % Image *CombineImages(const Image *images,const ColorspaceType colorspace,
462 % o images: the image sequence.
513 Combine images.
806 *images, local
816 images=NewImageList();
826 AppendImageToList(&images,separate_image);
828 if (images == (Image *) NULL)
829 images=SeparateImage(image,UndefinedChannel,exception)
    [all...]
constitute.c 252 % PingImages() pings one or more images and returns them as an image list.
276 *images;
304 Images of the form image-%d.png[1-5].
316 images=NewImageList();
325 AppendImageToList(&images,image);
328 return(images);
777 % ReadImages() reads one or more images and returns them as an image list.
801 *images;
831 Images of the form image-%d.png[1-5].
843 images=NewImageList()
272 *images; local
795 *images; local
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 6 7 8